| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |  * Smarty Internal Plugin Compile extend | 
					
						
							|  |  |  |  * Compiles the {extends} tag | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |  * @subpackage Compiler | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @author     Uwe Tews | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |  * Smarty Internal Plugin Compile extend Class | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |  * @subpackage Compiler | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  | class Smarty_Internal_Compile_Extends extends Smarty_Internal_Compile_Shared_Inheritance | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |      * Attribute definition: Overwrites base class. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      * @see Smarty_Internal_CompileBase | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |     public $required_attributes = array('file'); | 
					
						
							| 
									
										
										
										
											2015-07-12 01:11:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Array of names of optional attribute required by tag | 
					
						
							|  |  |  |      * use array('_any') if there is no restriction of attributes names | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public $optional_attributes = array('extends_resource'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |      * Attribute definition: Overwrites base class. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      * @see Smarty_Internal_CompileBase | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |     public $shorttag_order = array('file'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |      * Compiles code for the {extends} tag extends: resource | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |      * @param array                                 $args     array with attributes from parser | 
					
						
							| 
									
										
										
										
											2015-08-06 01:19:11 +02:00
										 |  |  |      * @param \Smarty_Internal_TemplateCompilerBase $compiler compiler object | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |      * @return string compiled code | 
					
						
							| 
									
										
										
										
											2015-08-06 01:19:11 +02:00
										 |  |  |      * @throws \SmartyCompilerException | 
					
						
							|  |  |  |      * @throws \SmartyException | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-08-06 01:19:11 +02:00
										 |  |  |     public function compile($args, Smarty_Internal_TemplateCompilerBase $compiler) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     { | 
					
						
							|  |  |  |         // check and get attributes
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         $_attr = $this->getAttributes($compiler, $args); | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |         if ($_attr[ 'nocache' ] === true) { | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |             $compiler->trigger_template_error('nocache option not allowed', $compiler->parser->lex->line - 1); | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |         if (strpos($_attr[ 'file' ], '$_tmp') !== false) { | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |             $compiler->trigger_template_error('illegal value for file attribute', $compiler->parser->lex->line - 1); | 
					
						
							| 
									
										
										
										
											2010-11-22 22:03:47 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         // add code to initialize inheritance
 | 
					
						
							|  |  |  |         $this->registerInit($compiler, true); | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |         $file = trim($_attr[ 'file' ], '\'"'); | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         if (strlen($file) > 8 && substr($file, 0, 8) == 'extends:') { | 
					
						
							|  |  |  |             // generate code for each template
 | 
					
						
							|  |  |  |             $files = array_reverse(explode('|', substr($file, 8))); | 
					
						
							|  |  |  |             $i = 0; | 
					
						
							|  |  |  |             foreach ($files as $file) { | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |                 if ($file[ 0 ] == '"') { | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |                     $file = trim($file, '".'); | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     $file = "'{$file}'"; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 $i ++; | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |                 if ($i == count($files) && isset($_attr[ 'extends_resource' ])) { | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |                     $this->compileEndChild($compiler); | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 $this->compileInclude($compiler, $file); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2016-02-09 01:27:15 +01:00
										 |  |  |             if (!isset($_attr[ 'extends_resource' ])) { | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |                 $this->compileEndChild($compiler); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2016-09-29 04:22:20 +02:00
										 |  |  |             $this->compileEndChild($compiler, $_attr[ 'file' ]); | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         $compiler->has_code = false; | 
					
						
							| 
									
										
										
										
											2010-07-30 13:09:52 +00:00
										 |  |  |         return ''; | 
					
						
							| 
									
										
										
										
											2011-04-21 23:11:24 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Add code for inheritance endChild() method to end of template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param \Smarty_Internal_TemplateCompilerBase $compiler | 
					
						
							| 
									
										
										
										
											2016-09-29 04:22:20 +02:00
										 |  |  |      * @param null|string                           $template optional inheritance parent template | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-09-29 04:22:20 +02:00
										 |  |  |     private function compileEndChild(Smarty_Internal_TemplateCompilerBase $compiler, $template = null) | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2016-09-29 04:22:20 +02:00
										 |  |  |         $inlineUids = ''; | 
					
						
							|  |  |  |         if (isset($template) && $compiler->smarty->merge_compiled_includes) { | 
					
						
							|  |  |  |             $code = $compiler->compileTag('include', array($template, array('scope' => 'parent'))); | 
					
						
							|  |  |  |             if (preg_match("/([,][\s]*['][a-z0-9]+['][,][\s]*[']content.*['])[)]/", $code, $match)) { | 
					
						
							|  |  |  |                 $inlineUids = $match[ 1 ]; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         $compiler->parser->template_postfix[] = new Smarty_Internal_ParseTree_Tag($compiler->parser, | 
					
						
							| 
									
										
										
										
											2016-09-29 04:22:20 +02:00
										 |  |  |                                                                                   "<?php \$_smarty_tpl->inheritance->endChild(\$_smarty_tpl" . | 
					
						
							|  |  |  |                                                                                   (isset($template) ? | 
					
						
							|  |  |  |                                                                                       ', ' . $template . $inlineUids : | 
					
						
							|  |  |  |                                                                                       '') . ");\n?>\n"); | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Add code for including subtemplate to end of template | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param \Smarty_Internal_TemplateCompilerBase $compiler | 
					
						
							| 
									
										
										
										
											2016-09-29 04:22:20 +02:00
										 |  |  |      * @param  string                               $template subtemplate name | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2016-09-29 04:22:20 +02:00
										 |  |  |     private function compileInclude(Smarty_Internal_TemplateCompilerBase $compiler, $template) | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |     { | 
					
						
							|  |  |  |         $compiler->parser->template_postfix[] = new Smarty_Internal_ParseTree_Tag($compiler->parser, | 
					
						
							|  |  |  |                                                                                   $compiler->compileTag('include', | 
					
						
							| 
									
										
										
										
											2016-09-29 04:22:20 +02:00
										 |  |  |                                                                                                         array($template, | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |                                                                                                               array('scope' => 'parent')))); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Create source code for {extends} from source components array | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param []\Smarty_Internal_Template_Source $components | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return string | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public static function extendsSourceArrayCode($components) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $resources = array(); | 
					
						
							|  |  |  |         foreach ($components as $source) { | 
					
						
							|  |  |  |             $resources[] = $source->resource; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         return '{extends file=\'extends:' . join('|', $resources) . '\' extends_resource=true}'; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2011-04-21 23:11:24 +00:00
										 |  |  | } |