1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/twig] Language output assignments, using context class again

PHPBB3-11598
This commit is contained in:
Nathan Guse
2013-06-11 09:41:15 -05:00
parent b035697800
commit 9acde23a05
2 changed files with 62 additions and 32 deletions

View File

@@ -82,6 +82,26 @@ class phpbb_template_context
return true;
}
/**
* Get (non-referenced) rootref
*
* @return array
*/
public function get_rootref()
{
return $this->rootref;
}
/**
* Get (non-referenced) tpldata
*
* @return array
*/
public function get_tpldata()
{
return $this->tpldata;
}
/**
* Returns a reference to template data array.
*