| 
									
										
										
										
											2009-11-06 14:35:00 +00:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |  * This file is part of Smarty. | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |  * (c) 2015 Uwe Tews | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * For the full copyright and license information, please view the LICENSE | 
					
						
							|  |  |  |  * file that was distributed with this source code. | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Smarty Internal Plugin Compile Block Class | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |  * @author Uwe Tews <uwe.tews@googlemail.com> | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  | class Smarty_Internal_Compile_Block extends Smarty_Internal_Compile_Shared_Inheritance | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-20 17:50:15 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |      * Attribute definition: Overwrites base class. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      * @see Smarty_Internal_CompileBase | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public $required_attributes = array('name'); | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-20 17:50:15 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |      * Attribute definition: Overwrites base class. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      * @see Smarty_Internal_CompileBase | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |     public $shorttag_order = array('name'); | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Attribute definition: Overwrites base class. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							|  |  |  |      * @see Smarty_Internal_CompileBase | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |     public $option_flags = array('hide', 'nocache'); | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |      * Attribute definition: Overwrites base class. | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |      * | 
					
						
							|  |  |  |      * @var array | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |      * @see Smarty_Internal_CompileBase | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |     public $optional_attributes = array('assign'); | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Compiles code for the {block} tag | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |      * @param array                                 $args      array with attributes from parser | 
					
						
							|  |  |  |      * @param \Smarty_Internal_TemplateCompilerBase $compiler  compiler object | 
					
						
							|  |  |  |      * @param array                                 $parameter array with compilation parameter | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |     public function compile($args, Smarty_Internal_TemplateCompilerBase $compiler, $parameter) | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         if (!isset($compiler->_cache[ 'blockNesting' ])) { | 
					
						
							|  |  |  |             $compiler->_cache[ 'blockNesting' ] = 0; | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         if ($compiler->_cache[ 'blockNesting' ] === 0) { | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |             // make sure that inheritance gets initialized in template code
 | 
					
						
							|  |  |  |             $this->registerInit($compiler); | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |             $this->option_flags = array('hide', 'nocache', 'append', 'prepend'); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             $this->option_flags = array('hide', 'nocache'); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |         // check and get attributes
 | 
					
						
							|  |  |  |         $_attr = $this->getAttributes($compiler, $args); | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         ++$compiler->_cache[ 'blockNesting' ]; | 
					
						
							| 
									
										
										
										
											2018-08-19 02:35:46 +02:00
										 |  |  |         $_className = 'Block_' . preg_replace('![^\w]+!', '_', uniqid(mt_rand(), true)); | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         $compiler->_cache[ 'blockName' ][ $compiler->_cache[ 'blockNesting' ] ] = $_attr[ 'name' ]; | 
					
						
							|  |  |  |         $compiler->_cache[ 'blockClass' ][ $compiler->_cache[ 'blockNesting' ] ] = $_className; | 
					
						
							|  |  |  |         $compiler->_cache[ 'blockParams' ][ $compiler->_cache[ 'blockNesting' ] ] = array(); | 
					
						
							|  |  |  |         $compiler->_cache[ 'blockParams' ][ 1 ][ 'subBlocks' ][ trim($_attr[ 'name' ], '"\'') ][] = $_className; | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |         $this->openTag( | 
					
						
							|  |  |  |             $compiler, | 
					
						
							|  |  |  |             'block', | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  |             array( | 
					
						
							|  |  |  |                 $_attr, $compiler->nocache, $compiler->parser->current_buffer, | 
					
						
							|  |  |  |                 $compiler->template->compiled->has_nocache_code, | 
					
						
							|  |  |  |                 $compiler->template->caching | 
					
						
							|  |  |  |             ) | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |         ); | 
					
						
							| 
									
										
										
										
											2018-03-28 07:15:29 +02:00
										 |  |  |         $compiler->saveRequiredPlugins(true); | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |         $compiler->nocache = $compiler->nocache | $compiler->tag_nocache; | 
					
						
							| 
									
										
										
										
											2015-08-06 01:19:11 +02:00
										 |  |  |         $compiler->parser->current_buffer = new Smarty_Internal_ParseTree_Template(); | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         $compiler->template->compiled->has_nocache_code = false; | 
					
						
							|  |  |  |         $compiler->suppressNocacheProcessing = true; | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Smarty Internal Plugin Compile BlockClose Class | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  | class Smarty_Internal_Compile_Blockclose extends Smarty_Internal_Compile_Shared_Inheritance | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-12-20 17:50:15 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |      * Compiles code for the {/block} tag | 
					
						
							|  |  |  |      * | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |      * @param array                                 $args      array with attributes from parser | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |      * @param \Smarty_Internal_TemplateCompilerBase $compiler  compiler object | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |      * @param array                                 $parameter array with compilation parameter | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |      * @return bool true | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  |      */ | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |     public function compile($args, Smarty_Internal_TemplateCompilerBase $compiler, $parameter) | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         list($_attr, $_nocache, $_buffer, $_has_nocache_code, $_caching) = $this->closeTag($compiler, array('block')); | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         // init block parameter
 | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         $_block = $compiler->_cache[ 'blockParams' ][ $compiler->_cache[ 'blockNesting' ] ]; | 
					
						
							|  |  |  |         unset($compiler->_cache[ 'blockParams' ][ $compiler->_cache[ 'blockNesting' ] ]); | 
					
						
							|  |  |  |         $_name = $_attr[ 'name' ]; | 
					
						
							|  |  |  |         $_assign = isset($_attr[ 'assign' ]) ? $_attr[ 'assign' ] : null; | 
					
						
							|  |  |  |         unset($_attr[ 'assign' ], $_attr[ 'name' ]); | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         foreach ($_attr as $name => $stat) { | 
					
						
							| 
									
										
										
										
											2017-11-06 01:02:56 +01:00
										 |  |  |             if ((is_bool($stat) && $stat !== false) || (!is_bool($stat) && $stat !== 'false')) { | 
					
						
							| 
									
										
										
										
											2016-01-26 21:49:56 +01:00
										 |  |  |                 $_block[ $name ] = 'true'; | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         $_className = $compiler->_cache[ 'blockClass' ][ $compiler->_cache[ 'blockNesting' ] ]; | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         // get compiled block code
 | 
					
						
							| 
									
										
										
										
											2016-01-26 21:49:56 +01:00
										 |  |  |         $_functionCode = $compiler->parser->current_buffer; | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         // setup buffer for template function code
 | 
					
						
							|  |  |  |         $compiler->parser->current_buffer = new Smarty_Internal_ParseTree_Template(); | 
					
						
							| 
									
										
										
										
											2016-01-26 21:49:56 +01:00
										 |  |  |         $output = "<?php\n"; | 
					
						
							| 
									
										
										
										
											2016-05-10 03:54:56 +02:00
										 |  |  |         $output .= "/* {block {$_name}} */\n"; | 
					
						
							| 
									
										
										
										
											2016-01-26 21:49:56 +01:00
										 |  |  |         $output .= "class {$_className} extends Smarty_Internal_Block\n"; | 
					
						
							|  |  |  |         $output .= "{\n"; | 
					
						
							|  |  |  |         foreach ($_block as $property => $value) { | 
					
						
							| 
									
										
										
										
											2018-08-31 16:45:09 +02:00
										 |  |  |             $output .= "public \${$property} = " . var_export($value, true) . ";\n"; | 
					
						
							| 
									
										
										
										
											2016-01-26 21:49:56 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |         $output .= "public function callBlock(Smarty_Internal_Template \$_smarty_tpl) {\n"; | 
					
						
							| 
									
										
										
										
											2018-03-28 07:15:29 +02:00
										 |  |  |         $output .= $compiler->compileRequiredPlugins(); | 
					
						
							|  |  |  |         $compiler->restoreRequiredPlugins(); | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         if ($compiler->template->compiled->has_nocache_code) { | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |             $output .= "\$_smarty_tpl->cached->hashes['{$compiler->template->compiled->nocache_hash}'] = true;\n"; | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         if (isset($_assign)) { | 
					
						
							|  |  |  |             $output .= "ob_start();\n"; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-11-11 07:10:35 +01:00
										 |  |  |         $output .= "?>\n"; | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |         $compiler->parser->current_buffer->append_subtree( | 
					
						
							|  |  |  |             $compiler->parser, | 
					
						
							|  |  |  |             new Smarty_Internal_ParseTree_Tag( | 
					
						
							|  |  |  |                 $compiler->parser, | 
					
						
							|  |  |  |                 $output | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2016-01-26 21:49:56 +01:00
										 |  |  |         $compiler->parser->current_buffer->append_subtree($compiler->parser, $_functionCode); | 
					
						
							|  |  |  |         $output = "<?php\n"; | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         if (isset($_assign)) { | 
					
						
							| 
									
										
										
										
											2016-02-09 23:27:07 +01:00
										 |  |  |             $output .= "\$_smarty_tpl->assign({$_assign}, ob_get_clean());\n"; | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-01-26 21:49:56 +01:00
										 |  |  |         $output .= "}\n"; | 
					
						
							| 
									
										
										
										
											2015-10-18 04:46:05 +02:00
										 |  |  |         $output .= "}\n"; | 
					
						
							| 
									
										
										
										
											2016-05-02 00:58:17 +02:00
										 |  |  |         $output .= "/* {/block {$_name}} */\n\n"; | 
					
						
							| 
									
										
										
										
											2017-11-11 07:10:35 +01:00
										 |  |  |         $output .= "?>\n"; | 
					
						
							| 
									
										
										
										
											2018-06-12 09:58:15 +02:00
										 |  |  |         $compiler->parser->current_buffer->append_subtree( | 
					
						
							|  |  |  |             $compiler->parser, | 
					
						
							|  |  |  |             new Smarty_Internal_ParseTree_Tag( | 
					
						
							|  |  |  |                 $compiler->parser, | 
					
						
							|  |  |  |                 $output | 
					
						
							|  |  |  |             ) | 
					
						
							|  |  |  |         ); | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         $compiler->blockOrFunctionCode .= $compiler->parser->current_buffer->to_smarty_php($compiler->parser); | 
					
						
							| 
									
										
										
										
											2016-01-26 21:49:56 +01:00
										 |  |  |         $compiler->parser->current_buffer = new Smarty_Internal_ParseTree_Template(); | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         // restore old status
 | 
					
						
							|  |  |  |         $compiler->template->compiled->has_nocache_code = $_has_nocache_code; | 
					
						
							|  |  |  |         $compiler->tag_nocache = $compiler->nocache; | 
					
						
							|  |  |  |         $compiler->nocache = $_nocache; | 
					
						
							|  |  |  |         $compiler->parser->current_buffer = $_buffer; | 
					
						
							| 
									
										
										
										
											2017-11-11 07:10:35 +01:00
										 |  |  |         $output = "<?php \n"; | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         if ($compiler->_cache[ 'blockNesting' ] === 1) { | 
					
						
							| 
									
										
										
										
											2016-05-10 03:54:56 +02:00
										 |  |  |             $output .= "\$_smarty_tpl->inheritance->instanceBlock(\$_smarty_tpl, '$_className', $_name);\n"; | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2016-05-10 03:54:56 +02:00
										 |  |  |             $output .= "\$_smarty_tpl->inheritance->instanceBlock(\$_smarty_tpl, '$_className', $_name, \$this->tplIndex);\n"; | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-11-11 07:10:35 +01:00
										 |  |  |         $output .= "?>\n"; | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         --$compiler->_cache[ 'blockNesting' ]; | 
					
						
							|  |  |  |         if ($compiler->_cache[ 'blockNesting' ] === 0) { | 
					
						
							|  |  |  |             unset($compiler->_cache[ 'blockNesting' ]); | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-03-26 22:35:31 +02:00
										 |  |  |         $compiler->has_code = true; | 
					
						
							| 
									
										
										
										
											2015-09-01 01:54:28 +02:00
										 |  |  |         $compiler->suppressNocacheProcessing = true; | 
					
						
							|  |  |  |         return $output; | 
					
						
							| 
									
										
										
										
											2013-08-24 18:46:31 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2013-07-27 07:05:26 +00:00
										 |  |  | } |