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']; } $_parent_scope = SMARTY_LOCAL_SCOPE; if (isset($_attr['scope'])) { if ($_attr['scope'] == '\'parent\'') { $_parent_scope = SMARTY_PARENT_SCOPE; } elseif ($_attr['scope'] == '\'root\'') { $_parent_scope = SMARTY_ROOT_SCOPE; } elseif ($_attr['scope'] == '\'global\'') { $_parent_scope = SMARTY_GLOBAL_SCOPE; } } /* * 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') { $_caching = 'false'; $this->compiler->tag_nocache = true; } } if (isset($_attr['caching'])) { if ($_attr['caching'] == 'true') { $_caching = 'true'; } } // create template object $_output = " $_value) { $_output .= "\$_template->assign('$_key',$_value);"; } } else { $this->compiler->trigger_template_error('variable passing not allowed in parent/global scope'); } } // add caching parameter if required if (isset($_caching_lifetime)) { $_output .= "\$_template->caching_lifetime = $_caching_lifetime;"; } if (isset($_caching)) { $_output .= "\$_template->caching = $_caching;"; } elseif (isset($_caching_lifetime)) { $_output .= "\$_template->caching = true;"; } // was there an assign attribute if (isset($_assign)) { $_output .= "\$_smarty_tpl->assign($_assign,\$_smarty_tpl->smarty->fetch(\$_template)); ?>"; } else { $_output .= "echo \$_smarty_tpl->smarty->fetch(\$_template); ?>"; } if ($_parent_scope != '0') { $_output .= "updateParentVariables($_parent_scope); ?>"; } return $_output; } } ?>