diff options
| author | javiexin <javiexin@gmail.com> | 2017-03-09 16:05:39 +0100 |
|---|---|---|
| committer | javiexin <javiexin@gmail.com> | 2017-03-09 16:05:39 +0100 |
| commit | 96a90d3f81c1fcce3834ee72b7d1b9f76aa9354c (patch) | |
| tree | 0626bbd23111a20be79728d631f857615ecb9f76 /phpBB/phpbb/template/template.php | |
| parent | f23d9bf2e0886498a3d9d5bb0a800d663b795e61 (diff) | |
| download | forums-96a90d3f81c1fcce3834ee72b7d1b9f76aa9354c.tar forums-96a90d3f81c1fcce3834ee72b7d1b9f76aa9354c.tar.gz forums-96a90d3f81c1fcce3834ee72b7d1b9f76aa9354c.tar.bz2 forums-96a90d3f81c1fcce3834ee72b7d1b9f76aa9354c.tar.xz forums-96a90d3f81c1fcce3834ee72b7d1b9f76aa9354c.zip | |
[ticket/15068] Add template vars retrieval from the template object
Add possibility to retrieve full block of vars
PHPBB3-15068
Diffstat (limited to 'phpBB/phpbb/template/template.php')
| -rw-r--r-- | phpBB/phpbb/template/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/template/template.php b/phpBB/phpbb/template/template.php index 183999d5f4..dbb85dc110 100644 --- a/phpBB/phpbb/template/template.php +++ b/phpBB/phpbb/template/template.php @@ -162,7 +162,7 @@ interface template /** * Retrieve variable values from an specified block * @param string $blockname Name of block to retrieve $vararray from - * @param array $vararray An array with variable names + * @param array $vararray An array with variable names, empty array gets all vars * @return array A hash of variable name => value pairs (value is null if not set) */ public function retrieve_block_vars($blockname, array $vararray); |
