get_template_vars
arrayget_template_vars
stringvarname
Este retorna el valor de una variable asignada. Si no tiene un
parámetro dado, un arreglo de todas las variables asignadas es
retornado.
get_template_vars
get_template_vars('foo');
// get all assigned template vars
$tpl_vars = $smarty->get_template_vars();
// take a look at them
print_r($tpl_vars);
?>
]]>