123456789101112131415161718192021222324252627282930313233 |
- <?php
-
- class Smarty_Internal_Compile_Ldelim extends Smarty_Internal_CompileBase {
-
- public function compile($args, $compiler)
- {
- $this->compiler = $compiler;
- $_attr = $this->_get_attributes($args);
-
- $this->compiler->has_code = true;
- return $this->compiler->smarty->left_delimiter;
- }
- }
- ?>
|