diff options
Diffstat (limited to 'phpBB/includes/template_executor.php')
-rw-r--r-- | phpBB/includes/template_executor.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/phpBB/includes/template_executor.php b/phpBB/includes/template_executor.php new file mode 100644 index 0000000000..9bbb3dca0d --- /dev/null +++ b/phpBB/includes/template_executor.php @@ -0,0 +1,15 @@ +<?php + +/** +* Template executor interface. +* +* Objects implementing this interface encapsulate a means of executing +* (i.e. rendering) a template. +*/ +interface phpbb_template_executor +{ + /** + * Executes the template managed by this executor. + */ + public function execute(); +} |