| [ Index ] |
|
Code source de Serendipity 1.2 |
1 <?php 2 3 class Text_Wiki_Render_Xhtml_Heading extends Text_Wiki_Render { 4 5 var $conf = array( 6 'css_h1' => null, 7 'css_h2' => null, 8 'css_h3' => null, 9 'css_h4' => null, 10 'css_h5' => null, 11 'css_h6' => null 12 ); 13 14 function token($options) 15 { 16 // get nice variable names (id, type, level) 17 extract($options); 18 19 if ($type == 'start') { 20 $css = $this->formatConf(' class="%s"', "css_h$level"); 21 return "<h$level$css id=\"$id\">"; 22 } 23 24 if ($type == 'end') { 25 return "</h$level>\n"; 26 } 27 } 28 } 29 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Sat Nov 24 09:00:37 2007 | par Balluche grâce à PHPXref 0.7 |
|