Skip to content

Instantly share code, notes, and snippets.

@jklein
Created April 3, 2014 21:53
Show Gist options
  • Save jklein/9963667 to your computer and use it in GitHub Desktop.
Save jklein/9963667 to your computer and use it in GitHub Desktop.
<?php echo $this->_tpl_vars['test_variable']; ?>
<br/>
<?php $_smarty_tpl_vars = $this->_tpl_vars;
$this->_smarty_include(array('smarty_include_tpl_file' => 'some_assigns_happen_here.tpl', 'smarty_include_vars' => array()));
$this->_tpl_vars = $_smarty_tpl_vars;
unset($_smarty_tpl_vars);
?>
<?php echo $this->_tpl_vars['test_variable']; ?>
<br/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment