| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2017-10-26 10:25:41 +02:00
										 |  |  |  * Smarty Internal Plugin Templateparser Parsetree | 
					
						
							|  |  |  |  * These are classes to build parsetree in the template parser | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  |  * @subpackage Compiler | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @author     Thue Kristensen | 
					
						
							|  |  |  |  * @author     Uwe Tews | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  |  * @subpackage Compiler | 
					
						
							|  |  |  |  * @ignore | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-12-30 16:16:54 +01:00
										 |  |  | abstract class Smarty_Internal_ParseTree | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Buffer content | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  |      * @var mixed | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public $data; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Subtree array | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public $subtrees = array(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Return buffer | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2015-08-06 01:19:11 +02:00
										 |  |  |      * @param \Smarty_Internal_Templateparser $parser | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  |      * @return string buffer content | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-08-06 01:19:11 +02:00
										 |  |  |     abstract public function to_smarty_php(Smarty_Internal_Templateparser $parser); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Template data object destructor | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function __destruct() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->data = null; | 
					
						
							|  |  |  |         $this->subtrees = null; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2014-03-17 21:57:15 +00:00
										 |  |  | } |