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