diff options
-rw-r--r-- | documentation/examples/hooks/register/advanced.php | 8 | ||||
-rw-r--r-- | documentation/examples/hooks/register/basic.php | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/documentation/examples/hooks/register/advanced.php b/documentation/examples/hooks/register/advanced.php index 48cddd480..a21a2e232 100644 --- a/documentation/examples/hooks/register/advanced.php +++ b/documentation/examples/hooks/register/advanced.php @@ -1,23 +1,23 @@ <?php // the output:page hook is triggered by page_draw(). -register_plugin_hook('output', 'page', 'example_plugin_hook_handler', 600) +register_plugin_hook('output', 'page', 'example_plugin_hook_handler', 600); register_plugin_hook('output', 'page', 'example_plugin_hook_handler_2', 601); function example_plugin_hook_handler($event, $type, $value, $params) { // change A to @ $value = str_replace('A', '@', $value); - return $value + return $value; } function example_plugin_hook_handler($event, $type, $value, $params) { // change S to $ $value = str_replace('S', '$', $value); - return $value + return $value; } $content = 'This is some Sample Content.'; -page_draw('Title', $content); +page_draw('Title', $content);
\ No newline at end of file diff --git a/documentation/examples/hooks/register/basic.php b/documentation/examples/hooks/register/basic.php index 957e82743..4cedbf0fd 100644 --- a/documentation/examples/hooks/register/basic.php +++ b/documentation/examples/hooks/register/basic.php @@ -6,7 +6,7 @@ function example_plugin_hook_handler($event, $type, $value, $params) { var_dump($event); var_dump($type); var_dump($value); - var_dump($params): + var_dump($params); return true; } |