| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-10-31 00:44:58 +00:00
										 |  |  | * Smarty Internal Plugin Compile Function_Call | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | *  | 
					
						
							| 
									
										
										
										
											2009-10-31 00:44:58 +00:00
										 |  |  | * Compiles the calls of user defined tags defined by {function} | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | *  | 
					
						
							|  |  |  | * @package Smarty | 
					
						
							|  |  |  | * @subpackage Compiler | 
					
						
							|  |  |  | * @author Uwe Tews  | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-10-31 00:44:58 +00:00
										 |  |  | * Smarty Internal Plugin Compile Function_Call Class | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2009-12-27 15:06:49 +00:00
										 |  |  | class Smarty_Internal_Compile_Private_Function_Call extends Smarty_Internal_CompileBase { | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2009-10-31 00:44:58 +00:00
										 |  |  |     * Compiles the calls of user defined tags defined by {function} | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |     *  | 
					
						
							|  |  |  |     * @param array $args array with attributes from parser | 
					
						
							|  |  |  |     * @param object $compiler compiler object | 
					
						
							|  |  |  |     * @return string compiled code | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     public function compile($args, $compiler) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->compiler = $compiler; | 
					
						
							|  |  |  |         $this->required_attributes = array('name'); | 
					
						
							|  |  |  |         $this->optional_attributes = array('_any');  | 
					
						
							|  |  |  |         // check and get attributes
 | 
					
						
							|  |  |  |         $_attr = $this->_get_attributes($args);  | 
					
						
							|  |  |  |         // save posible attributes
 | 
					
						
							|  |  |  |         if (isset($_attr['assign'])) { | 
					
						
							|  |  |  |             // output will be stored in a smarty variable instead of beind displayed
 | 
					
						
							|  |  |  |             $_assign = $_attr['assign']; | 
					
						
							| 
									
										
										
										
											2009-04-26 16:56:17 +00:00
										 |  |  |         }  | 
					
						
							|  |  |  |         $_name = trim($_attr['name'], "'");  | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         // create template object
 | 
					
						
							| 
									
										
										
										
											2009-12-01 22:24:31 +00:00
										 |  |  |         $_output = "<?php \$_template = new {$compiler->smarty->template_class} ('string:', \$_smarty_tpl->smarty, \$_smarty_tpl);\n";  | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         // assign default paramter
 | 
					
						
							| 
									
										
										
										
											2009-04-30 17:39:17 +00:00
										 |  |  |         if (isset($this->smarty->template_functions[$_name]['parameter'])) { | 
					
						
							|  |  |  |             // function is already compiled
 | 
					
						
							|  |  |  |             foreach ($this->smarty->template_functions[$_name]['parameter'] as $_key => $_value) { | 
					
						
							|  |  |  |                 if (!isset($_attr[$_key])) { | 
					
						
							|  |  |  |                     $_output .= "\$_template->assign('$_key',$_value);\n"; | 
					
						
							|  |  |  |                 }  | 
					
						
							|  |  |  |             }  | 
					
						
							| 
									
										
										
										
											2009-04-28 15:37:13 +00:00
										 |  |  |         }  | 
					
						
							| 
									
										
										
										
											2009-04-30 17:39:17 +00:00
										 |  |  |         if (isset($compiler->template->properties['function'][$_name]['parameter'])) { | 
					
						
							|  |  |  |             // for recursive call during function compilation
 | 
					
						
							|  |  |  |             foreach ($compiler->template->properties['function'][$_name]['parameter'] as $_key => $_value) { | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |                 if (!isset($_attr[$_key])) { | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  |                     $_output .= "\$_template->assign('$_key',$_value);\n"; | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |                 }  | 
					
						
							|  |  |  |             }  | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  |         // delete {include} standard attributes
 | 
					
						
							|  |  |  |         unset($_attr['name'], $_attr['assign']);  | 
					
						
							|  |  |  |         // remaining attributes must be assigned as smarty variable
 | 
					
						
							|  |  |  |         if (!empty($_attr)) { | 
					
						
							|  |  |  |             // create variables
 | 
					
						
							|  |  |  |             foreach ($_attr as $_key => $_value) { | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  |                 $_output .= "\$_template->assign('$_key',$_value);\n"; | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |             }  | 
					
						
							| 
									
										
										
										
											2009-04-26 16:56:17 +00:00
										 |  |  |         }  | 
					
						
							| 
									
										
										
										
											2009-04-30 17:39:17 +00:00
										 |  |  |         // load compiled function
 | 
					
						
							|  |  |  |         $_output .= "\$_template->compiled_template = \$this->smarty->template_functions['$_name']['compiled'];\n\$_template->mustCompile = false;\n";  | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         // was there an assign attribute
 | 
					
						
							|  |  |  |         if (isset($_assign)) { | 
					
						
							| 
									
										
										
										
											2009-11-14 13:02:48 +00:00
										 |  |  |             $_output .= "\$_smarty_tpl->assign($_assign,\$_template->getRenderedTemplate()); ?>"; | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-11-14 13:02:48 +00:00
										 |  |  |             $_output .= "echo \$_template->getRenderedTemplate(); ?>"; | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         }  | 
					
						
							|  |  |  |         return $_output; | 
					
						
							|  |  |  |     }  | 
					
						
							|  |  |  | }  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |