aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template_executor.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/template_executor.php')
-rw-r--r--phpBB/includes/template_executor.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/phpBB/includes/template_executor.php b/phpBB/includes/template_executor.php
index 32e4e9a7b4..0d410679b9 100644
--- a/phpBB/includes/template_executor.php
+++ b/phpBB/includes/template_executor.php
@@ -1,10 +1,28 @@
<?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 executor interface.
*
* Objects implementing this interface encapsulate a means of executing
* (i.e. rendering) a template.
+*
+* @package phpBB3
*/
interface phpbb_template_executor
{