diff options
Diffstat (limited to 'Widgets/smarty/libs/sysplugins/smarty_resource_uncompiled.php')
-rw-r--r-- | Widgets/smarty/libs/sysplugins/smarty_resource_uncompiled.php | 23 |
1 files changed, 13 insertions, 10 deletions
diff --git a/Widgets/smarty/libs/sysplugins/smarty_resource_uncompiled.php b/Widgets/smarty/libs/sysplugins/smarty_resource_uncompiled.php index 4ee5d790..ea802350 100644 --- a/Widgets/smarty/libs/sysplugins/smarty_resource_uncompiled.php +++ b/Widgets/smarty/libs/sysplugins/smarty_resource_uncompiled.php @@ -2,29 +2,29 @@ /** * Smarty Resource Plugin * - * @package Smarty + * @package Smarty * @subpackage TemplateResources - * @author Rodney Rehm + * @author Rodney Rehm */ /** * Smarty Resource Plugin + * * Base implementation for resource plugins that don't use the compiler * - * @package Smarty + * @package Smarty * @subpackage TemplateResources */ -abstract class Smarty_Resource_Uncompiled extends Smarty_Resource -{ +abstract class Smarty_Resource_Uncompiled extends Smarty_Resource { + /** * Render and output the template (without using the compiler) * - * @param Smarty_Template_Source $source source object - * @param Smarty_Internal_Template $_template template object - * - * @throws SmartyException on failure + * @param Smarty_Template_Source $source source object + * @param Smarty_Internal_Template $_template template object + * @throws SmartyException on failure */ - abstract public function renderUncompiled(Smarty_Template_Source $source, Smarty_Internal_Template $_template); + public abstract function renderUncompiled(Smarty_Template_Source $source, Smarty_Internal_Template $_template); /** * populate compiled object with compiled filepath @@ -38,4 +38,7 @@ abstract class Smarty_Resource_Uncompiled extends Smarty_Resource $compiled->timestamp = false; $compiled->exists = false; } + } + +?>
\ No newline at end of file |