aboutsummaryrefslogtreecommitdiff
path: root/documentation/examples/hooks/all.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-11-12 14:49:36 -0500
committercash <cash.costello@gmail.com>2011-11-12 14:49:36 -0500
commit08c5b507bbaf4937ff637bd138f64119873e2922 (patch)
tree756d1fc1d85bac9e5bd71d5a6bb15b7e29ce6cef /documentation/examples/hooks/all.php
parent76bea966f7f93e719ccbf6e2350f647636d4da2a (diff)
downloadelgg-08c5b507bbaf4937ff637bd138f64119873e2922.tar.gz
elgg-08c5b507bbaf4937ff637bd138f64119873e2922.tar.bz2
cleaned up the plugin hooks documentation
Diffstat (limited to 'documentation/examples/hooks/all.php')
-rw-r--r--documentation/examples/hooks/all.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/documentation/examples/hooks/all.php b/documentation/examples/hooks/all.php
new file mode 100644
index 000000000..76b562335
--- /dev/null
+++ b/documentation/examples/hooks/all.php
@@ -0,0 +1,12 @@
+<?php
+/**
+ * This snippet demonstrates how to register for multiple hooks with the same
+ * type.
+ */
+
+elgg_register_plugin_hook_handler('all', 'system', 'example_plugin_hook_handler');
+
+// This function will be called for any hook of type 'system'
+function example_plugin_hook_handler($hook, $type, $value, $params) {
+ // logic here.
+}