aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/style/template_renderer_eval.php
diff options
context:
space:
mode:
authorVjacheslav Trushkin <arty@phpbb.com>2012-03-14 23:12:11 +0200
committerVjacheslav Trushkin <arty@phpbb.com>2012-03-14 23:12:11 +0200
commitb7d84a586c1e253ff7075e80ab721db5c1101c9f (patch)
tree16e0e179d9f5d0382236ac4865c56e4c7cff3cac /phpBB/includes/style/template_renderer_eval.php
parent7d414d04ca80b3dc5efc7ece4c3c28123a4e7e89 (diff)
downloadforums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.tar
forums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.tar.gz
forums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.tar.bz2
forums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.tar.xz
forums-b7d84a586c1e253ff7075e80ab721db5c1101c9f.zip
[feature/merging-style-components] Renaming template classes
Changing template classes prefixes from phpbb_template to phpbb_style (for classes that will work with styles) or phpbb_style_template (for classes that are specific to templates) PHPBB3-10632
Diffstat (limited to 'phpBB/includes/style/template_renderer_eval.php')
-rw-r--r--phpBB/includes/style/template_renderer_eval.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/style/template_renderer_eval.php b/phpBB/includes/style/template_renderer_eval.php
index f8e4cb7b10..3e08b06e69 100644
--- a/phpBB/includes/style/template_renderer_eval.php
+++ b/phpBB/includes/style/template_renderer_eval.php
@@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
-class phpbb_template_renderer_eval implements phpbb_template_renderer
+class phpbb_style_template_renderer_eval implements phpbb_style_template_renderer
{
/**
* Template code to be eval'ed.
@@ -33,7 +33,7 @@ class phpbb_template_renderer_eval implements phpbb_template_renderer
* Template includes are delegated to template object $template.
*
* @param string $code php code of the template
- * @param phpbb_template $template template object
+ * @param phpbb_style_template $template template object
*/
public function __construct($code, $template)
{
@@ -45,7 +45,7 @@ class phpbb_template_renderer_eval implements phpbb_template_renderer
* Displays the template managed by this renderer by eval'ing php code
* of the template.
*
- * @param phpbb_template_context $context Template context to use
+ * @param phpbb_style_template_context $context Template context to use
* @param array $lang Language entries to use
*/
public function render($context, $lang)