includes/wikiengine/Render/Plain/Image.php
author Dan
Tue, 22 Jul 2008 17:03:53 -0500
changeset 655 b2c51a68209b
parent 1 fe660c52c48f
permissions -rw-r--r--
Fixed unused $admintitle variable in $template->fading_button code generation; fixed missing CDNPATH, JS_HEADER, and JS_FOOTER in template_nodb; localized onpage_lbl_page_external

<?php
class Text_Wiki_Render_Plain_Image 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;
    }
}
?>