includes/wikiengine/Render/Plain.php
author Dan
Sat, 29 Nov 2008 22:49:41 -0500
changeset 759 6e2671261802
parent 1 fe660c52c48f
permissions -rw-r--r--
Plugins can now register their own custom actions for $_GET["do"].

<?php

class Text_Wiki_Render_Plain extends Text_Wiki_Render {
    
    function pre()
    {
        return;
    }
    
    function post()
    {
        return;
    }
    
}
?>