diff options
Diffstat (limited to 'documentation/examples/hooks/trigger/basic.php')
-rw-r--r-- | documentation/examples/hooks/trigger/basic.php | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/documentation/examples/hooks/trigger/basic.php b/documentation/examples/hooks/trigger/basic.php deleted file mode 100644 index ea27a8a98..000000000 --- a/documentation/examples/hooks/trigger/basic.php +++ /dev/null @@ -1,9 +0,0 @@ -<?php - -$result = elgg_trigger_plugin_hook('get_status', 'example', null, true); - -if ($result) { - var_dump('Plugin hook says ok!'); -} else { - var_dump('Plugin hook says no.'); -} |