| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  | * Smarty Internal Plugin Compile Function Close | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | *  | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  | * Compiles the {/function} tag | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | *  | 
					
						
							|  |  |  | * @package Smarty | 
					
						
							|  |  |  | * @subpackage Compiler | 
					
						
							|  |  |  | * @author Uwe Tews  | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /** | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  | * Smarty Internal Plugin Compile FunctionClose Class | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  | */ | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  | class Smarty_Internal_Compile_FunctionClose extends Smarty_Internal_CompileBase { | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |     /** | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  |     * Compiles code for the {/function} tag | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |     *  | 
					
						
							|  |  |  |     * @param array $args array with attributes from parser | 
					
						
							|  |  |  |     * @param object $compiler compiler object | 
					
						
							|  |  |  |     * @return boolean true | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  |     public function compile($args, $compiler) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->compiler = $compiler; | 
					
						
							|  |  |  |         $this->compiler->has_code = false;  | 
					
						
							|  |  |  |         // turn off block code extraction
 | 
					
						
							|  |  |  |         $compiler->template->extract_code = false;  | 
					
						
							|  |  |  |         // check and get attributes
 | 
					
						
							|  |  |  |         $this->optional_attributes = array('name'); | 
					
						
							|  |  |  |         $_attr = $this->_get_attributes($args); | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  |         $saved_data = $this->_close_tag(array('function'));  | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         // if name does match to opening tag
 | 
					
						
							|  |  |  |         if (isset($_attr['name']) && $saved_data[0]['name'] != $_attr['name']) { | 
					
						
							|  |  |  |             $this->compiler->trigger_template_error('mismatching name attributes "' . $saved_data[0]['name'] . '" and "' . $_attr['name'] . '"'); | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  |         $_name = trim($saved_data[0]['name'], "'"); | 
					
						
							| 
									
										
										
										
											2009-04-24 22:36:12 +00:00
										 |  |  |         $compiler->template->properties['function'][$_name]['compiled'] = str_replace("\n",'_%n',$compiler->template->extracted_compiled_code); | 
					
						
							| 
									
										
										
										
											2009-06-14 11:07:26 +00:00
										 |  |  |         $this->compiler->smarty->template_functions[$_name]['compiled'] = $compiler->template->extracted_compiled_code; | 
					
						
							|  |  |  |         $this->compiler->smarty->template_functions[$_name]['parameter'] = $compiler->template->properties['function'][$_name]['parameter']; | 
					
						
							| 
									
										
										
										
											2009-04-24 19:59:51 +00:00
										 |  |  |         $compiler->template->extracted_compiled_code = $saved_data[1]; | 
					
						
							|  |  |  |         $compiler->template->extract_code = $saved_data[2]; | 
					
						
							|  |  |  |         return true; | 
					
						
							|  |  |  |     }  | 
					
						
							|  |  |  | }  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |