diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-01 06:36:29 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-01 06:36:29 +0000 |
commit | beaaf5c3bdc700a872df2b7a39e268ce36cc0012 (patch) | |
tree | d0cb1da31f2895f01683ed8ae8b8a12617636efe /engine/lib/actions.php | |
parent | 95caad1ac699e356b424cc9151ce8c91e1cb6221 (diff) | |
download | elgg-beaaf5c3bdc700a872df2b7a39e268ce36cc0012.tar.gz elgg-beaaf5c3bdc700a872df2b7a39e268ce36cc0012.tar.bz2 |
Reversing 7975
git-svn-id: http://code.elgg.org/elgg/trunk@7978 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/actions.php')
-rw-r--r-- | engine/lib/actions.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/engine/lib/actions.php b/engine/lib/actions.php index 0691e306a..d95fe0435 100644 --- a/engine/lib/actions.php +++ b/engine/lib/actions.php @@ -181,6 +181,23 @@ function elgg_register_action($action, $filename = "", $access = 'logged_in') { } /** + * @deprecated 1.8 Use {@link elgg_register_action()} instead + */ +function register_action($action, $public = false, $filename = "", $admin_only = false) { + elgg_deprecated_notice("register_action() was deprecated by elgg_register_action()", 1.8); + + if ($admin_only) { + $access = 'admin'; + } elseif ($public) { + $access = 'public'; + } else { + $access = 'logged_in'; + } + + return elgg_register_action($action, $filename, $access); +} + +/** * Validate an action token. * * Calls to actions will automatically validate tokens. |