summaryrefslogtreecommitdiff
path: root/smarty/libs/sysplugins/smarty_resource_recompiled.php
diff options
context:
space:
mode:
authorChristian Fowler <cfowler2@wcpss.net>2013-04-07 21:01:10 -0400
committerChristian Fowler <cfowler2@wcpss.net>2013-04-07 21:01:10 -0400
commit9e47a97eb068c353afd0a8cec7a623baad6b1fd2 (patch)
tree03ac35bccf7ee298078619a3c805e40789a9eef0 /smarty/libs/sysplugins/smarty_resource_recompiled.php
parentc07d61528e32f109a26051acecc66dd83a6c8591 (diff)
parent53f32f73708b3ab2c1f43b16db33b7f8a41d25d7 (diff)
downloadthemes-9e47a97eb068c353afd0a8cec7a623baad6b1fd2.tar.gz
themes-9e47a97eb068c353afd0a8cec7a623baad6b1fd2.tar.bz2
themes-9e47a97eb068c353afd0a8cec7a623baad6b1fd2.zip
Merge branch 'master' of github.com:bitweaver/themes
Diffstat (limited to 'smarty/libs/sysplugins/smarty_resource_recompiled.php')
-rw-r--r--smarty/libs/sysplugins/smarty_resource_recompiled.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/smarty/libs/sysplugins/smarty_resource_recompiled.php b/smarty/libs/sysplugins/smarty_resource_recompiled.php
new file mode 100644
index 0000000..ab55b93
--- /dev/null
+++ b/smarty/libs/sysplugins/smarty_resource_recompiled.php
@@ -0,0 +1,36 @@
+<?php
+/**
+ * Smarty Resource Plugin
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ * @author Rodney Rehm
+ */
+
+/**
+ * Smarty Resource Plugin
+ *
+ * Base implementation for resource plugins that don't compile cache
+ *
+ * @package Smarty
+ * @subpackage TemplateResources
+ */
+abstract class Smarty_Resource_Recompiled extends Smarty_Resource {
+
+ /**
+ * populate Compiled Object with compiled filepath
+ *
+ * @param Smarty_Template_Compiled $compiled compiled object
+ * @param Smarty_Internal_Template $_template template object
+ * @return void
+ */
+ public function populateCompiledFilepath(Smarty_Template_Compiled $compiled, Smarty_Internal_Template $_template)
+ {
+ $compiled->filepath = false;
+ $compiled->timestamp = false;
+ $compiled->exists = false;
+ }
+
+}
+
+?> \ No newline at end of file