aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/template.php')
-rw-r--r--phpBB/includes/template.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php
index b13dbaa99a..ca118fb632 100644
--- a/phpBB/includes/template.php
+++ b/phpBB/includes/template.php
@@ -147,7 +147,16 @@ class template
*/
function display($handle, $include_once = true)
{
- global $user;
+ global $user, $phpbb_hook;
+
+ // To let users change the complete templated page (all variables available)
+ if ($phpbb_hook->call_hook(array(get_class(), __FUNCTION__), $handle, $include_once))
+ {
+ if ($phpbb_hook->hook_return(array(get_class(), __FUNCTION__)))
+ {
+ return $phpbb_hook->hook_return_result(array(get_class(), __FUNCTION__));
+ }
+ }
if (defined('IN_ERROR_HANDLER'))
{