From 8a636a3aa83809e3db3ca327aa77e806fb7a6ed3 Mon Sep 17 00:00:00 2001 From: marcus Date: Tue, 14 Oct 2008 11:17:13 +0000 Subject: Closes #235: Simple profile editor in place git-svn-id: https://code.elgg.org/elgg/trunk@2255 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/profile/actions/editdefault.php | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 mod/profile/actions/editdefault.php (limited to 'mod/profile/actions/editdefault.php') 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 @@ + + * @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 -- cgit v1.2.3