aboutsummaryrefslogtreecommitdiff
path: root/documentation/examples/events
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-10 22:22:40 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-10 22:22:40 +0000
commitc8f6c3c934df01bf969e3d91ae67f0887de10da9 (patch)
treed21179fda1e19d540eb3ea56b31584f86fc1e338 /documentation/examples/events
parenta7801c71ecc6ce0f0d2a8fc82cdc779da9417aa4 (diff)
downloadelgg-c8f6c3c934df01bf969e3d91ae67f0887de10da9.tar.gz
elgg-c8f6c3c934df01bf969e3d91ae67f0887de10da9.tar.bz2
Fixes #2367: With fear and trepidation, converting events/plugin hooks to use elgg_ prefixed versions
git-svn-id: http://code.elgg.org/elgg/trunk@7284 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'documentation/examples/events')
-rw-r--r--documentation/examples/events/advanced.php2
-rw-r--r--documentation/examples/events/all.php2
-rw-r--r--documentation/examples/events/basic.php2
-rw-r--r--documentation/examples/events/emit.php4
4 files changed, 5 insertions, 5 deletions
diff --git a/documentation/examples/events/advanced.php b/documentation/examples/events/advanced.php
index c6fc2d0fb..f566e0006 100644
--- a/documentation/examples/events/advanced.php
+++ b/documentation/examples/events/advanced.php
@@ -1,6 +1,6 @@
<?php
-register_elgg_event_handler('create', 'object', 'example_event_handler');
+elgg_register_event_handler('create', 'object', 'example_event_handler');
function example_event_handler($event, $type, $params) {
// Don't allow any non-admin users to create objects
diff --git a/documentation/examples/events/all.php b/documentation/examples/events/all.php
index 63959a9d2..238178312 100644
--- a/documentation/examples/events/all.php
+++ b/documentation/examples/events/all.php
@@ -1,6 +1,6 @@
<?php
-register_elgg_event_handler('all', 'object', 'example_event_handler');
+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) {
diff --git a/documentation/examples/events/basic.php b/documentation/examples/events/basic.php
index b274137b8..91704e60b 100644
--- a/documentation/examples/events/basic.php
+++ b/documentation/examples/events/basic.php
@@ -1,6 +1,6 @@
<?php
-register_elgg_event_handler('init', 'system', 'example_event_handler');
+elgg_register_event_handler('init', 'system', 'example_event_handler');
function example_event_handler($event, $type, $params) {
var_dump($event);
diff --git a/documentation/examples/events/emit.php b/documentation/examples/events/emit.php
index f4cd1b127..b917c6dc0 100644
--- a/documentation/examples/events/emit.php
+++ b/documentation/examples/events/emit.php
@@ -1,7 +1,7 @@
<?php
$params = new ElggObject();
-trigger_elgg_event('test', 'example', $params);
+elgg_trigger_event('test', 'example', $params);
// handlers would be registered by saying
-register_elgg_event_handler('test', 'example', 'example_event_handler');
+elgg_register_event_handler('test', 'example', 'example_event_handler');