diff options
| author | Uwe.Tews <uwe.tews@localhost> | 2010-07-01 19:57:56 +0000 |
|---|---|---|
| committer | Uwe.Tews <uwe.tews@localhost> | 2010-07-01 19:57:56 +0000 |
| commit | cbe2f3356f88da652592f1f5b0594e4b7a52fadf (patch) | |
| tree | 0f83b6dbad0ad0995b2747e60130af53462ab18e /libs/sysplugins/smarty_internal_parsetree.php | |
| parent | 64564037065386c7c4fa4c0b72d7c0807cc6bd65 (diff) | |
| download | smarty-cbe2f3356f88da652592f1f5b0594e4b7a52fadf.tar.gz smarty-cbe2f3356f88da652592f1f5b0594e4b7a52fadf.tar.bz2 smarty-cbe2f3356f88da652592f1f5b0594e4b7a52fadf.zip | |
- removed call_user_func_array calls for optimization of compiled code when using registered modifiers and plugins
- updated comments
Diffstat (limited to 'libs/sysplugins/smarty_internal_parsetree.php')
| -rw-r--r-- | libs/sysplugins/smarty_internal_parsetree.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libs/sysplugins/smarty_internal_parsetree.php b/libs/sysplugins/smarty_internal_parsetree.php index 605fe56b..e0f99f34 100644 --- a/libs/sysplugins/smarty_internal_parsetree.php +++ b/libs/sysplugins/smarty_internal_parsetree.php @@ -1,4 +1,14 @@ <?php
+/**
+* Smarty Internal Plugin Templateparser Parsetrees
+*
+* These are classes to build parsetrees in the template parser
+*
+* @package Smarty
+* @subpackage Compiler
+* @author Thue Kristensen
+* @author Uwe Tews
+*/
abstract class _smarty_parsetree {
abstract public function to_smarty_php();
|
