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

[ticket/10756] Renaming template classes

Renaming template classes from phpbb_style_template_ to phpbb_template_

PHPBB3-10756
This commit is contained in:
Vjacheslav Trushkin
2012-04-03 11:27:15 +03:00
committed by Nils Adermann
parent 733018f99a
commit ef295a2860
10 changed files with 24 additions and 24 deletions

View File

@@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
*
* @package phpBB3
*/
class phpbb_style_template_renderer_eval implements phpbb_style_template_renderer
class phpbb_template_renderer_eval implements phpbb_template_renderer
{
/**
* Template code to be eval'ed.
@@ -45,7 +45,7 @@ class phpbb_style_template_renderer_eval implements phpbb_style_template_rendere
* Displays the template managed by this renderer by eval'ing php code
* of the template.
*
* @param phpbb_style_template_context $context Template context to use
* @param phpbb_template_context $context Template context to use
* @param array $lang Language entries to use
*/
public function render($context, $lang)