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 / Anchor.php next >
Encoding:
PHP Script  |  2008-07-02  |  357 b   |  24 lines

  1. <?php
  2.  
  3. /**
  4. * This class renders an anchor target name in XHTML.
  5. *
  6. * @author Manuel Holtgrewe <purestorm at ggnore dot net>
  7. *
  8. * @author Paul M. Jones <pmjones at ciaweb dot net>
  9. *
  10. * @package Text_Wiki
  11. *
  12. */
  13.  
  14. class Text_Wiki_Render_Plain_Anchor extends Text_Wiki_Render {
  15.     
  16.     function token($options)
  17.     {
  18.         return $options['name'];
  19.     }
  20. }
  21.  
  22. ?>
  23.