aboutsummaryrefslogtreecommitdiff
path: root/documentation/examples/events/all.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-11-12 14:28:52 -0500
committercash <cash.costello@gmail.com>2011-11-16 19:53:04 -0500
commit11aacb4f048e659d1b86a6ba229438444a186142 (patch)
treed35da1535860f8883e5c92d3571fa2090890d85a /documentation/examples/events/all.php
parent08a2fc293a9ecb92caa778d32689b595bee1d68d (diff)
downloadelgg-11aacb4f048e659d1b86a6ba229438444a186142.tar.gz
elgg-11aacb4f048e659d1b86a6ba229438444a186142.tar.bz2
added better plugin skeleton and added documentation to some of the examples
Diffstat (limited to 'documentation/examples/events/all.php')
-rw-r--r--documentation/examples/events/all.php16
1 files changed, 11 insertions, 5 deletions
diff --git a/documentation/examples/events/all.php b/documentation/examples/events/all.php
index 238178312..0ad02c1d4 100644
--- a/documentation/examples/events/all.php
+++ b/documentation/examples/events/all.php
@@ -1,17 +1,24 @@
<?php
+/**
+ * If you register an 'all' string for the event name, the handler function will
+ * be called for all events with that name, regardless of event type. The same
+ * can be done for the event type argument. Registering 'all' for both
+ * argyuments results in a handler being called for every event.
+ */
elgg_register_event_handler('all', 'object', 'example_event_handler');
// This function will be called for any event of type 'object'
-function example_event_handler($event, $type, $params) {
+function example_event_handler($event, $type, $object) {
// check what sort of object is passed
- if ($params instanceof ElggObject) {
- $subtype = $params->getSubtype();
+ if ($object instanceof ElggObject) {
+ $subtype = $object->getSubtype();
- switch($subtype) {
+ switch ($subtype) {
case 'blog':
case 'thewire':
case 'pages':
+ // prevent these object subtypes from being saved or changed
return false;
default:
return true;
@@ -21,4 +28,3 @@ function example_event_handler($event, $type, $params) {
return true;
}
-