mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 09:13:02 +02:00
related to #1693 changed smarty version to 4.1.0
This commit is contained in:
committed by
plegall
parent
25570529a7
commit
ecfa090d6d
@@ -0,0 +1,37 @@
|
||||
getTemplateVars()
|
||||
|
||||
returns assigned variable value(s)
|
||||
|
||||
Description
|
||||
===========
|
||||
|
||||
array
|
||||
|
||||
getTemplateVars
|
||||
|
||||
string
|
||||
|
||||
varname
|
||||
|
||||
If no parameter is given, an array of all [assigned](#api.assign)
|
||||
variables are returned.
|
||||
|
||||
|
||||
<?php
|
||||
// get assigned template var 'foo'
|
||||
$myVar = $smarty->getTemplateVars('foo');
|
||||
|
||||
// get all assigned template vars
|
||||
$all_tpl_vars = $smarty->getTemplateVars();
|
||||
|
||||
// take a look at them
|
||||
print_r($all_tpl_vars);
|
||||
?>
|
||||
|
||||
|
||||
|
||||
See also [`assign()`](#api.assign),
|
||||
[`{assign}`](#language.function.assign), [`append()`](#api.append),
|
||||
[`clearAssign()`](#api.clear.assign),
|
||||
[`clearAllAssign()`](#api.clear.all.assign) and
|
||||
[`getConfigVars()`](#api.get.config.vars)
|
||||
Reference in New Issue
Block a user