| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  | * Smarty Internal Plugin Compile Include | 
					
						
							|  |  |  | *  | 
					
						
							|  |  |  | * Compiles the {include} tag | 
					
						
							|  |  |  | *  | 
					
						
							|  |  |  | * @package Smarty | 
					
						
							|  |  |  | * @subpackage Compiler | 
					
						
							|  |  |  | * @author Uwe Tews  | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  | * Smarty Internal Plugin Compile Include Class | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | class Smarty_Internal_Compile_Include extends Smarty_Internal_CompileBase { | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |     * Compiles code for the {include} tag | 
					
						
							|  |  |  |     *  | 
					
						
							|  |  |  |     * @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('file'); | 
					
						
							|  |  |  |         $this->optional_attributes = array('_any');  | 
					
						
							|  |  |  |         // check and get attributes
 | 
					
						
							|  |  |  |         $_attr = $this->_get_attributes($args);  | 
					
						
							|  |  |  |         // save posible attributes
 | 
					
						
							|  |  |  |         $include_file = $_attr['file']; | 
					
						
							|  |  |  |         if (isset($_attr['assign'])) { | 
					
						
							|  |  |  |             // output will be stored in a smarty variable instead of beind displayed
 | 
					
						
							|  |  |  |             $_assign = $_attr['assign']; | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-07 16:22:31 +00:00
										 |  |  |         $_parent_scope = SMARTY_LOCAL_SCOPE; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         if (isset($_attr['scope'])) { | 
					
						
							|  |  |  |             if ($_attr['scope'] == '\'parent\'') { | 
					
						
							| 
									
										
										
										
											2009-04-07 16:22:31 +00:00
										 |  |  |                 $_parent_scope = SMARTY_PARENT_SCOPE; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             } elseif ($_attr['scope'] == '\'root\'') { | 
					
						
							| 
									
										
										
										
											2009-04-07 16:22:31 +00:00
										 |  |  |                 $_parent_scope = SMARTY_ROOT_SCOPE; | 
					
						
							| 
									
										
										
										
											2009-04-10 12:33:51 +00:00
										 |  |  |             } elseif ($_attr['scope'] == '\'global\'') { | 
					
						
							|  |  |  |                 $_parent_scope = SMARTY_GLOBAL_SCOPE; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             }  | 
					
						
							|  |  |  |         }  | 
					
						
							| 
									
										
										
										
											2009-04-26 16:56:17 +00:00
										 |  |  |         // default for included templates
 | 
					
						
							|  |  |  |         $_caching = SMARTY_CACHING_OFF; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         /* | 
					
						
							|  |  |  |         * if the {include} tag provides individual parameter for caching | 
					
						
							|  |  |  |         * it will not be included into the common cache file and treated like | 
					
						
							|  |  |  |         * a nocache section | 
					
						
							|  |  |  |         */ | 
					
						
							|  |  |  |         if (isset($_attr['caching_lifetime'])) { | 
					
						
							|  |  |  |             $_caching_lifetime = $_attr['caching_lifetime']; | 
					
						
							|  |  |  |             $this->compiler->tag_nocache = true; | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  |         if (isset($_attr['nocache'])) { | 
					
						
							|  |  |  |             if ($_attr['nocache'] == 'true') { | 
					
						
							|  |  |  |                 $this->compiler->tag_nocache = true; | 
					
						
							|  |  |  |             }  | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  |         if (isset($_attr['caching'])) { | 
					
						
							|  |  |  |             if ($_attr['caching'] == 'true') { | 
					
						
							| 
									
										
										
										
											2009-04-26 16:56:17 +00:00
										 |  |  |                 $_caching = SMARTY_CACHING_LIFETIME_CURRENT; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             }  | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  |         // create template object
 | 
					
						
							| 
									
										
										
										
											2009-04-14 10:31:02 +00:00
										 |  |  |         $_output = "<?php \$_template = new Smarty_Template ($include_file, \$_smarty_tpl, \$_smarty_tpl->cache_id,  \$_smarty_tpl->compile_id);";  | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         // delete {include} standard attributes
 | 
					
						
							|  |  |  |         unset($_attr['file'], $_attr['assign'], $_attr['caching_lifetime'], $_attr['nocache'], $_attr['caching'], $_attr['scope']);  | 
					
						
							|  |  |  |         // remaining attributes must be assigned as smarty variable
 | 
					
						
							|  |  |  |         if (!empty($_attr)) { | 
					
						
							| 
									
										
										
										
											2009-04-07 16:22:31 +00:00
										 |  |  |             if ($_parent_scope == SMARTY_LOCAL_SCOPE) { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |                 // create variables
 | 
					
						
							|  |  |  |                 foreach ($_attr as $_key => $_value) { | 
					
						
							|  |  |  |                     $_output .= "\$_template->assign('$_key',$_value);"; | 
					
						
							|  |  |  |                 }  | 
					
						
							|  |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2009-04-06 02:53:09 +00:00
										 |  |  |                 $this->compiler->trigger_template_error('variable passing not allowed in parent/global scope'); | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             }  | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  |         // add caching parameter if required
 | 
					
						
							|  |  |  |         if (isset($_caching_lifetime)) { | 
					
						
							|  |  |  |             $_output .= "\$_template->caching_lifetime = $_caching_lifetime;"; | 
					
						
							|  |  |  |         }  | 
					
						
							| 
									
										
										
										
											2009-04-26 16:56:17 +00:00
										 |  |  |         $_output .= "\$_template->caching = $_caching;";  | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         // was there an assign attribute
 | 
					
						
							|  |  |  |         if (isset($_assign)) { | 
					
						
							| 
									
										
										
										
											2009-04-14 11:25:45 +00:00
										 |  |  |             $_output .= "\$_smarty_tpl->assign($_assign,\$_smarty_tpl->smarty->fetch(\$_template)); ?>"; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-04-14 10:31:02 +00:00
										 |  |  |             $_output .= "echo \$_smarty_tpl->smarty->fetch(\$_template); ?>"; | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |         }  | 
					
						
							| 
									
										
										
										
											2009-04-14 10:31:02 +00:00
										 |  |  |         if ($_parent_scope != SMARTY_LOCAL_SCOPE) { | 
					
						
							| 
									
										
										
										
											2009-03-22 16:09:05 +00:00
										 |  |  |             $_output .= "<?php \$_template->updateParentVariables($_parent_scope); ?>"; | 
					
						
							|  |  |  |         }  | 
					
						
							|  |  |  |         return $_output; | 
					
						
							|  |  |  |     }  | 
					
						
							|  |  |  | }  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ?>
 |