aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/style/template_renderer.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.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.php')
-rw-r--r--phpBB/includes/style/template_renderer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/style/template_renderer.php b/phpBB/includes/style/template_renderer.php
index 30e234a733..bd2a786e86 100644
--- a/phpBB/includes/style/template_renderer.php
+++ b/phpBB/includes/style/template_renderer.php
@@ -23,12 +23,12 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
-interface phpbb_template_renderer
+interface phpbb_style_template_renderer
{
/**
* Displays the template managed by this renderer.
*
- * @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);