Skip to content

Commit

Permalink
A new rule introduced by tiki for drawing boxes
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk@191792 c90b9560-bf6c-de11-be94-00142212c4b1
  • Loading branch information
bertrand Gugger committed Jul 29, 2005
1 parent 3b93313 commit 6895442
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Text/Wiki/Render/Xhtml/Box.php
@@ -0,0 +1,34 @@
<?php

class Text_Wiki_Render_Xhtml_Box extends Text_Wiki_Render {

var $conf = array(
'css' => null
);

/**
*
* Renders a token into text matching the requested format.
*
* @access public
*
* @param array $options The "options" portion of the token (second
* element).
*
* @return string The text rendered from the token options.
*
*/

function token($options)
{
if ($options['type'] == 'start') {
$css = $this->formatConf(' class="%s"', 'css');
return "<div class='simplebox'$css>";
}

if ($options['type'] == 'end') {
return '</div>';
}
}
}
?>

0 comments on commit 6895442

Please sign in to comment.