From 91f5af494b350d6b43b03316d381cc25e34933c7 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Sun, 23 Sep 2007 13:14:28 +0000 Subject: PHP4 compatibility git-svn-id: file:///svn/phpbb/trunk@8104 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/docs/hook_system.html | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'phpBB/docs/hook_system.html') diff --git a/phpBB/docs/hook_system.html b/phpBB/docs/hook_system.html index d877757050..2bcffe3458 100644 --- a/phpBB/docs/hook_system.html +++ b/phpBB/docs/hook_system.html @@ -434,11 +434,11 @@ class my_hookable_object { global $phpbb_hook; - if ($phpbb_hook->call_hook(array(get_class(), __FUNCTION__), $my_first_parameter, $my_second_parameter)) + if ($phpbb_hook->call_hook(array(get_class($this), __FUNCTION__), $my_first_parameter, $my_second_parameter)) { - if ($phpbb_hook->hook_return(array(get_class(), __FUNCTION__))) + if ($phpbb_hook->hook_return(array(get_class($this), __FUNCTION__))) { - return $phpbb_hook->hook_return_result(array(get_class(), __FUNCTION__)); + return $phpbb_hook->hook_return_result(array(get_class($this), __FUNCTION__)); } } @@ -447,7 +447,7 @@ class my_hookable_object } -

The only difference about calling it is the way you define the first parameter. For a function it is only __FUNCTION__, for a method it is array(get_class(), __FUNCTION__).

+

The only difference about calling it is the way you define the first parameter. For a function it is only __FUNCTION__, for a method it is array(get_class($this), __FUNCTION__). Since PHP 5.0.0 the get_class() function no longer requires the object to be given, you simply write: array(get_class(), __FUNCTION__).

Now, in phpBB there are some pre-defined hooks available, but how do you make your own hookable function available (and therefore allowing others to hook into it)? For this, there is the add_hook() method:

@@ -579,11 +579,11 @@ class my_hookable_object2 extends my_hookable_object { global $phpbb_hook; - if ($phpbb_hook->call_hook(array(get_class(), __FUNCTION__), $my_first_parameter, $my_second_parameter)) + if ($phpbb_hook->call_hook(array(get_class($this), __FUNCTION__), $my_first_parameter, $my_second_parameter)) { - if ($phpbb_hook->hook_return(array(get_class(), __FUNCTION__))) + if ($phpbb_hook->hook_return(array(get_class($this), __FUNCTION__))) { - return $phpbb_hook->hook_return_result(array(get_class(), __FUNCTION__)); + return $phpbb_hook->hook_return_result(array(get_class($this), __FUNCTION__)); } } } @@ -636,11 +636,11 @@ class my_hookable_object2 extends my_hookable_object { global $phpbb_hook; - if ($phpbb_hook->call_hook(array(get_class(), __FUNCTION__), $my_first_parameter, $my_second_parameter)) + if ($phpbb_hook->call_hook(array(get_class($this), __FUNCTION__), $my_first_parameter, $my_second_parameter)) { - if ($phpbb_hook->hook_return(array(get_class(), __FUNCTION__))) + if ($phpbb_hook->hook_return(array(get_class($this), __FUNCTION__))) { - return $phpbb_hook->hook_return_result(array(get_class(), __FUNCTION__)); + return $phpbb_hook->hook_return_result(array(get_class($this), __FUNCTION__)); } } } -- cgit v1.2.1