aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/actions/resetdefaultprofile.php
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/resetdefaultprofile.php
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/resetdefaultprofile.php')
-rw-r--r--mod/profile/actions/resetdefaultprofile.php29
1 files changed, 29 insertions, 0 deletions
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