1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[feature/template-engine] Moved template classes to subdirectory.

PHPBB3-9726
This commit is contained in:
Oleg Pudeyev
2011-05-08 04:05:09 -04:00
parent 84bc485ccc
commit 49cf28a9c4
5 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?php
/**
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2011 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}
/**
* Template renderer interface.
*
* Objects implementing this interface encapsulate a means of displaying
* a template.
*
* @package phpBB3
*/
interface phpbb_template_renderer
{
/**
* Displays the template managed by this renderer.
* @param phpbb_template_context $context Template context to use
* @param array $lang Language entries to use
*/
public function render($context, $lang);
}