includes/wikiengine/Render/Plain/Freelink.php
author Dan
Sat, 07 Jun 2008 12:46:18 -0400
changeset 562 75df0b2c596c
parent 1 fe660c52c48f
permissions -rw-r--r--
Got initial CSRF token framework implemented and sample implementation added in Special:Logout; removing Javascript compression engine from aggressive_optimize_html() and instead calling JavascriptCompressor class from js-compressor.php

<?php

class Text_Wiki_Render_Plain_Freelink extends Text_Wiki_Render {
    
    /**
    * 
    * 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)
    {
        return $options['text'];
    }
}
?>