home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / php / PEAR / Text / Wiki / Render / Plain / Heading.php < prev    next >
Encoding:
PHP Script  |  2008-07-02  |  241 b   |  14 lines

  1. <?php
  2.  
  3. class Text_Wiki_Render_Plain_Heading extends Text_Wiki_Render {
  4.     
  5.     function token($options)
  6.     {
  7.         if ($options['type'] == 'end') {
  8.             return "\n\n";
  9.         } else {
  10.             return "\n";
  11.         }
  12.     }
  13. }
  14. ?>