From b2f1d4cdbc745ff8a58a9d9b45fc2234c0192fe5 Mon Sep 17 00:00:00 2001 From: marcus Date: Tue, 30 Sep 2008 17:35:55 +0000 Subject: Closes #390: Triggers an event 'action', $action before action is included. This is rather kludgy and we need to rethink this a bit. git-svn-id: https://code.elgg.org/elgg/trunk@2154 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/actions.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'engine/lib/actions.php') diff --git a/engine/lib/actions.php b/engine/lib/actions.php index a78072f31..9eba53e67 100644 --- a/engine/lib/actions.php +++ b/engine/lib/actions.php @@ -53,7 +53,12 @@ (isadminloggedin()) || (!$CONFIG->actions[$action]['admin']) ) { - if ($CONFIG->actions[$action]['public'] || $_SESSION['id'] != -1) { + if ($CONFIG->actions[$action]['public'] || $_SESSION['id'] != -1) { + + // Trigger action event TODO: This is only called before the primary action is called. We need to rethink actions for 1.5 + trigger_elgg_event('action', $action); + + // Include action if (@include($CONFIG->actions[$action]['file'])) { } else { register_error(sprintf(elgg_echo('actionundefined'),$action)); -- cgit v1.2.3