| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |  * Smarty Internal Plugin Compile Function_Call | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * Compiles the calls of user defined tags defined by {function} | 
					
						
							|  |  |  |  *  | 
					
						
							|  |  |  |  * @package Smarty | 
					
						
							|  |  |  |  * @subpackage Compiler | 
					
						
							|  |  |  |  * @author Uwe Tews  | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |  * Smarty Internal Plugin Compile Function_Call Class | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2009-12-30 14:26:42 +00:00
										 |  |  | class Smarty_Internal_Compile_Call extends Smarty_Internal_CompileBase { | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |      * Compiles the calls of user defined tags defined by {function} | 
					
						
							|  |  |  |      *  | 
					
						
							|  |  |  |      * @param array $args array with attributes from parser | 
					
						
							|  |  |  |      * @param object $compiler compiler object | 
					
						
							|  |  |  |      * @return string compiled code | 
					
						
							|  |  |  |      */ | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |     public function compile($args, $compiler) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->compiler = $compiler; | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |         $this->smarty = $compiler->smarty; | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         $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
										 |  |  |         }  | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |         $_name = trim($_attr['name'], "'\""); | 
					
						
							|  |  |  |         unset($_attr['name'], $_attr['assign']);  | 
					
						
							| 
									
										
										
										
											2009-12-29 20:12:11 +00:00
										 |  |  |         // set flag (compiled code of {function} must be included in cache file
 | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |         if ($compiler->nocache || $compiler->tag_nocache) { | 
					
						
							|  |  |  |             $_nocache = 'true'; | 
					
						
							| 
									
										
										
										
											2009-12-31 16:38:12 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |             $_nocache = 'false'; | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         }  | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |         $_paramsArray = array(); | 
					
						
							|  |  |  |         foreach ($_attr as $_key => $_value) { | 
					
						
							|  |  |  |             if (is_int($_key)) { | 
					
						
							|  |  |  |                 $_paramsArray[] = "$_key=>$_value"; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $_paramsArray[] = "'$_key'=>$_value"; | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |             }  | 
					
						
							| 
									
										
										
										
											2009-04-26 16:56:17 +00:00
										 |  |  |         }  | 
					
						
							| 
									
										
										
										
											2010-06-01 17:10:39 +00:00
										 |  |  |         if (isset($compiler->template->properties['function'][$_name]['parameter'])) { | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |             foreach ($compiler->template->properties['function'][$_name]['parameter'] as $_key => $_value) { | 
					
						
							|  |  |  |                 if (!isset($_attr[$_key])) { | 
					
						
							|  |  |  |                     if (is_int($_key)) { | 
					
						
							|  |  |  |                         $_paramsArray[] = "$_key=>$_value"; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         $_paramsArray[] = "'$_key'=>$_value"; | 
					
						
							|  |  |  |                     }  | 
					
						
							|  |  |  |                 }  | 
					
						
							|  |  |  |             }  | 
					
						
							| 
									
										
										
										
											2010-06-01 17:10:39 +00:00
										 |  |  |         } elseif (isset($this->smarty->template_functions[$_name]['parameter'])) { | 
					
						
							|  |  |  |            foreach ($this->smarty->template_functions[$_name]['parameter'] as $_key => $_value) { | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |                 if (!isset($_attr[$_key])) { | 
					
						
							|  |  |  |                     if (is_int($_key)) { | 
					
						
							|  |  |  |                         $_paramsArray[] = "$_key=>$_value"; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         $_paramsArray[] = "'$_key'=>$_value"; | 
					
						
							|  |  |  |                     }  | 
					
						
							|  |  |  |                 }  | 
					
						
							|  |  |  |             }  | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  |         $_params = 'array(' . implode(",", $_paramsArray) . ')'; | 
					
						
							| 
									
										
										
										
											2010-08-17 15:39:51 +00:00
										 |  |  |     $_hash = str_replace('-','_',$compiler->template->properties['nocache_hash']); | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         // was there an assign attribute
 | 
					
						
							|  |  |  |         if (isset($_assign)) { | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |             if ($compiler->template->caching) { | 
					
						
							|  |  |  |                 $_output = "\$_smarty_tpl->assign({$_assign},Smarty_Internal_Function_Call_Handler::call ('{$_name}',\$_smarty_tpl,{$_params},'{$_hash}',{$_nocache}));?>\n"; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $_output = "\$_smarty_tpl->assign({$_assign},smarty_template_function_{$_name}(\$_smarty_tpl,{$_params}));?>\n"; | 
					
						
							|  |  |  |             }  | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  |             if ($compiler->template->caching) { | 
					
						
							|  |  |  |                 $_output = "<?php Smarty_Internal_Function_Call_Handler::call ('{$_name}',\$_smarty_tpl,{$_params},'{$_hash}',{$_nocache});?>\n"; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 $_output = "<?php smarty_template_function_{$_name}(\$_smarty_tpl,{$_params});?>\n"; | 
					
						
							|  |  |  |             }  | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         }  | 
					
						
							|  |  |  |         return $_output; | 
					
						
							|  |  |  |     }  | 
					
						
							|  |  |  | }  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-25 19:33:55 +00:00
										 |  |  | ?>
 |