aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/actions
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-14 11:17:13 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-10-14 11:17:13 +0000
commit8a636a3aa83809e3db3ca327aa77e806fb7a6ed3 (patch)
tree049358471b2ae27bbc3f73562fc9456e5f090ca8 /mod/profile/actions
parent71951a0c879937848d47328f305f0ab0724ea243 (diff)
downloadelgg-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')
-rw-r--r--mod/profile/actions/deletedefaultprofileitem.php26
-rw-r--r--mod/profile/actions/editdefault.php38
-rw-r--r--mod/profile/actions/resetdefaultprofile.php29
3 files changed, 93 insertions, 0 deletions
diff --git a/mod/profile/actions/deletedefaultprofileitem.php b/mod/profile/actions/deletedefaultprofileitem.php
new file mode 100644
index 000000000..7947c65a1
--- /dev/null
+++ b/mod/profile/actions/deletedefaultprofileitem.php
@@ -0,0 +1,26 @@
+<?php
+ /**
+ * Elgg profile plugin edit default profile action removal
+ *
+ * @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/
+ */
+
+ global $CONFIG;
+
+ action_gatekeeper();
+ admin_gatekeeper();
+
+ $id = (int)get_input('id');
+
+ if ( ($id) && (set_plugin_setting("admin_defined_profile_$id", '', 'profile')) &&
+ (set_plugin_setting("admin_defined_profile_type_$id", '', 'profile')))
+ system_message(elgg_echo('profile:editdefault:delete:success'));
+ else
+ register_error(elgg_echo('profile:editdefault:delete:fail'));
+
+ forward($_SERVER['HTTP_REFERER']);
+?> \ No newline at end of file
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
diff --git a/mod/profile/actions/resetdefaultprofile.php b/mod/profile/actions/resetdefaultprofile.php
new file mode 100644
index 000000000..7407fe937
--- /dev/null
+++ b/mod/profile/actions/resetdefaultprofile.php
@@ -0,0 +1,29 @@
+<?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();
+
+ $n = 0;
+ while (get_plugin_setting("admin_defined_profile_$n", 'profile')) {
+ set_plugin_setting("admin_defined_profile_$n", '', 'profile');
+ set_plugin_setting("admin_defined_profile_type_$n", '', 'profile');
+
+ $n++;
+ }
+
+ system_message(elgg_echo('profile:defaultprofile:reset'));
+
+ forward($_SERVER['HTTP_REFERER']);
+?> \ No newline at end of file