diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-14 11:17:13 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-10-14 11:17:13 +0000 |
commit | 8a636a3aa83809e3db3ca327aa77e806fb7a6ed3 (patch) | |
tree | 049358471b2ae27bbc3f73562fc9456e5f090ca8 /mod/profile/actions/editdefault.php | |
parent | 71951a0c879937848d47328f305f0ab0724ea243 (diff) | |
download | elgg-8a636a3aa83809e3db3ca327aa77e806fb7a6ed3.tar.gz elgg-8a636a3aa83809e3db3ca327aa77e806fb7a6ed3.tar.bz2 |
Closes #235: Simple profile editor in place
git-svn-id: https://code.elgg.org/elgg/trunk@2255 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/actions/editdefault.php')
-rw-r--r-- | mod/profile/actions/editdefault.php | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/mod/profile/actions/editdefault.php b/mod/profile/actions/editdefault.php new file mode 100644 index 000000000..fb6ef0b51 --- /dev/null +++ b/mod/profile/actions/editdefault.php @@ -0,0 +1,38 @@ +<?php + + /** + * Elgg profile plugin edit default profile action + * + * @package ElggProfile + * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2 + * @author Curverider Ltd <info@elgg.com> + * @copyright Curverider Ltd 2008 + * @link http://elgg.com/ + */ + + // Load configuration + global $CONFIG; + + action_gatekeeper(); + admin_gatekeeper(); + + $label = sanitise_string(get_input('label')); + $type = sanitise_string(get_input('type')); + + if (($label) && ($type)) + { + $n = 0; + while (get_plugin_setting("admin_defined_profile_$n", 'profile')) {$n++;} // find free space + + if ( (set_plugin_setting("admin_defined_profile_$n", $label, 'profile')) && + (set_plugin_setting("admin_defined_profile_type_$n", $type, 'profile'))) + system_message(elgg_echo('profile:editdefault:success')); + else + register_error(elgg_echo('profile:editdefault:fail')); + + } + else + register_error(elgg_echo('profile:editdefault:fail')); + + forward($_SERVER['HTTP_REFERER']); +?>
\ No newline at end of file |