aboutsummaryrefslogtreecommitdiff
path: root/documentation/examples/hooks/trigger
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-15 15:40:51 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-09-15 15:40:51 +0000
commitea4403c9240c3778cddc90d48d0a59c4d47dd2d8 (patch)
treed62822795c186d7de87f3f5e337283d8007dae2a /documentation/examples/hooks/trigger
parent4d008fefd2882a51309b5c6a7c3c7775fb34270d (diff)
downloadelgg-ea4403c9240c3778cddc90d48d0a59c4d47dd2d8.tar.gz
elgg-ea4403c9240c3778cddc90d48d0a59c4d47dd2d8.tar.bz2
Adding documentation and examples.
git-svn-id: http://code.elgg.org/elgg/trunk@6933 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'documentation/examples/hooks/trigger')
-rw-r--r--documentation/examples/hooks/trigger/advanced.php9
-rw-r--r--documentation/examples/hooks/trigger/basic.php9
2 files changed, 18 insertions, 0 deletions
diff --git a/documentation/examples/hooks/trigger/advanced.php b/documentation/examples/hooks/trigger/advanced.php
new file mode 100644
index 000000000..de33e7a10
--- /dev/null
+++ b/documentation/examples/hooks/trigger/advanced.php
@@ -0,0 +1,9 @@
+<?php
+
+$default = array('Entry 1', 'Entry 2', 'Entry 3');
+
+$menu = trigger_plugin_hook('get_menu_items', 'menu', null, $default);
+
+foreach ($menu as $item) {
+ var_dump($item);
+}
diff --git a/documentation/examples/hooks/trigger/basic.php b/documentation/examples/hooks/trigger/basic.php
new file mode 100644
index 000000000..a32bf9296
--- /dev/null
+++ b/documentation/examples/hooks/trigger/basic.php
@@ -0,0 +1,9 @@
+<?php
+
+$result = trigger_plugin_hook('get_status', 'example', null, true);
+
+if ($result) {
+ var_dump('Plugin hook says ok!');
+} else {
+ var_dump('Plugin hook says no.');
+}