| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-07-08 18:30:03 +00:00
										 |  |  |  * Smarty Internal Plugin Compile Assign | 
					
						
							|  |  |  |  * Compiles the {assign} tag | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2010-07-08 18:30:03 +00:00
										 |  |  |  * @subpackage Compiler | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @author     Uwe Tews | 
					
						
							| 
									
										
										
										
											2010-07-08 18:30:03 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-07-08 18:30:03 +00:00
										 |  |  |  * Smarty Internal Plugin Compile Assign Class | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |  * @package    Smarty | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |  * @subpackage Compiler | 
					
						
							| 
									
										
										
										
											2010-07-08 18:30:03 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | class Smarty_Internal_Compile_Assign extends Smarty_Internal_CompileBase | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2010-07-08 18:30:03 +00:00
										 |  |  |      * Compiles code for the {assign} tag | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |      * @param  array  $args      array with attributes from parser | 
					
						
							|  |  |  |      * @param  object $compiler  compiler object | 
					
						
							|  |  |  |      * @param  array  $parameter array with compilation parameter | 
					
						
							| 
									
										
										
										
											2014-06-06 02:40:04 +00:00
										 |  |  |      * | 
					
						
							| 
									
										
										
										
											2010-07-08 18:30:03 +00:00
										 |  |  |      * @return string compiled code | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |     public function compile($args, $compiler, $parameter) | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2010-12-28 22:40:13 +00:00
										 |  |  |         // the following must be assigned at runtime because it will be overwritten in Smarty_Internal_Compile_Append
 | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         $this->required_attributes = array('var', 'value'); | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |         $this->shorttag_order = array('var', 'value'); | 
					
						
							|  |  |  |         $this->optional_attributes = array('scope'); | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         $_nocache = 'null'; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         $_scope = Smarty::SCOPE_LOCAL; | 
					
						
							| 
									
										
										
										
											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); | 
					
						
							|  |  |  |         // nocache ?
 | 
					
						
							|  |  |  |         if ($compiler->tag_nocache || $compiler->nocache) { | 
					
						
							|  |  |  |             $_nocache = 'true'; | 
					
						
							| 
									
										
										
										
											2010-07-31 13:29:59 +00:00
										 |  |  |             // create nocache var to make it know for further compiling
 | 
					
						
							| 
									
										
										
										
											2012-07-30 20:07:51 +00:00
										 |  |  |             if (isset($compiler->template->tpl_vars[trim($_attr['var'], "'")])) { | 
					
						
							|  |  |  |                 $compiler->template->tpl_vars[trim($_attr['var'], "'")]->nocache = true; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $compiler->template->tpl_vars[trim($_attr['var'], "'")] = new Smarty_variable(null, true); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |         // scope setup
 | 
					
						
							| 
									
										
										
										
											2009-04-07 16:22:31 +00:00
										 |  |  |         if (isset($_attr['scope'])) { | 
					
						
							| 
									
										
										
										
											2010-07-30 13:09:52 +00:00
										 |  |  |             $_attr['scope'] = trim($_attr['scope'], "'\""); | 
					
						
							|  |  |  |             if ($_attr['scope'] == 'parent') { | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |                 $_scope = Smarty::SCOPE_PARENT; | 
					
						
							| 
									
										
										
										
											2010-07-30 13:09:52 +00:00
										 |  |  |             } elseif ($_attr['scope'] == 'root') { | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |                 $_scope = Smarty::SCOPE_ROOT; | 
					
						
							| 
									
										
										
										
											2010-07-30 13:09:52 +00:00
										 |  |  |             } elseif ($_attr['scope'] == 'global') { | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |                 $_scope = Smarty::SCOPE_GLOBAL; | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |                 $compiler->trigger_template_error('illegal value for "scope" attribute', $compiler->lex->taglineno); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         // compiled output
 | 
					
						
							| 
									
										
										
										
											2010-11-11 21:34:36 +00:00
										 |  |  |         if (isset($parameter['smarty_internal_index'])) { | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |             $output = "<?php \$_smarty_tpl->createLocalArrayVariable($_attr[var], $_nocache, $_scope);\n\$_smarty_tpl->tpl_vars[$_attr[var]]->value$parameter[smarty_internal_index] = $_attr[value];"; | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2012-03-27 17:07:32 +00:00
										 |  |  |             // implement Smarty2's behaviour of variables assigned by reference
 | 
					
						
							|  |  |  |             if ($compiler->template->smarty instanceof SmartyBC) { | 
					
						
							|  |  |  |                 $output = "<?php if (isset(\$_smarty_tpl->tpl_vars[$_attr[var]])) {\$_smarty_tpl->tpl_vars[$_attr[var]] = clone \$_smarty_tpl->tpl_vars[$_attr[var]];"; | 
					
						
							|  |  |  |                 $output .= "\n\$_smarty_tpl->tpl_vars[$_attr[var]]->value = $_attr[value]; \$_smarty_tpl->tpl_vars[$_attr[var]]->nocache = $_nocache; \$_smarty_tpl->tpl_vars[$_attr[var]]->scope = $_scope;"; | 
					
						
							|  |  |  |                 $output .= "\n} else \$_smarty_tpl->tpl_vars[$_attr[var]] = new Smarty_variable($_attr[value], $_nocache, $_scope);"; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $output = "<?php \$_smarty_tpl->tpl_vars[$_attr[var]] = new Smarty_variable($_attr[value], $_nocache, $_scope);"; | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-09-20 19:12:51 +00:00
										 |  |  |         if ($_scope == Smarty::SCOPE_PARENT) { | 
					
						
							|  |  |  |             $output .= "\nif (\$_smarty_tpl->parent != null) \$_smarty_tpl->parent->tpl_vars[$_attr[var]] = clone \$_smarty_tpl->tpl_vars[$_attr[var]];"; | 
					
						
							|  |  |  |         } elseif ($_scope == Smarty::SCOPE_ROOT || $_scope == Smarty::SCOPE_GLOBAL) { | 
					
						
							|  |  |  |             $output .= "\n\$_ptr = \$_smarty_tpl->parent; while (\$_ptr != null) {\$_ptr->tpl_vars[$_attr[var]] = clone \$_smarty_tpl->tpl_vars[$_attr[var]]; \$_ptr = \$_ptr->parent; }"; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  |         if ($_scope == Smarty::SCOPE_GLOBAL) { | 
					
						
							| 
									
										
										
										
											2011-09-20 19:12:51 +00:00
										 |  |  |             $output .= "\nSmarty::\$global_tpl_vars[$_attr[var]] = clone \$_smarty_tpl->tpl_vars[$_attr[var]];"; | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-09-20 19:12:51 +00:00
										 |  |  |         $output .= '?>'; | 
					
						
							| 
									
										
										
										
											2013-07-14 22:15:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-16 14:19:56 +00:00
										 |  |  |         return $output; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |