12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
-
-
- class Smarty_Internal_ParseTree_Text extends Smarty_Internal_ParseTree
- {
-
-
- public function __construct($data)
- {
- $this->data = $data;
- }
-
-
-
- public function to_smarty_php(Smarty_Internal_Templateparser $parser)
- {
- return $this->data;
- }
- }
|