diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-18 23:18:43 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-18 23:18:43 +0000 |
commit | 0b5a24d7943c6f8bc275d1160f4060b337a3cf7a (patch) | |
tree | 105769cfd0c1d29c75fe368b989c5380536aa40a /mod/profile/actions/deletedefaultprofileitem.php | |
parent | 09d08af9814a4edfb2050cdb47ad8ae20a944472 (diff) | |
download | elgg-0b5a24d7943c6f8bc275d1160f4060b337a3cf7a.tar.gz elgg-0b5a24d7943c6f8bc275d1160f4060b337a3cf7a.tar.bz2 |
continuing to slash and burn the profile plugin - moving the admin profile fields into core - last major change
git-svn-id: http://code.elgg.org/elgg/trunk@7673 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/actions/deletedefaultprofileitem.php')
-rw-r--r-- | mod/profile/actions/deletedefaultprofileitem.php | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/mod/profile/actions/deletedefaultprofileitem.php b/mod/profile/actions/deletedefaultprofileitem.php deleted file mode 100644 index 6791d2c46..000000000 --- a/mod/profile/actions/deletedefaultprofileitem.php +++ /dev/null @@ -1,29 +0,0 @@ -<?php -/** - * Elgg profile plugin edit default profile action removal - * - * @package ElggProfile - */ - -global $CONFIG; - -$id = get_input('id'); - -$fieldlist = get_plugin_setting('user_defined_fields', 'profile'); -if (!$fieldlist) { - $fieldlist = ''; -} - -$fieldlist = str_replace("{$id},", "", $fieldlist); -$fieldlist = str_replace(",{$id}", "", $fieldlist); -$fieldlist = str_replace("{$id}", "", $fieldlist); - -if (($id) && (set_plugin_setting("admin_defined_profile_$id", '', 'profile')) && - (set_plugin_setting("admin_defined_profile_type_$id", '', 'profile')) && - set_plugin_setting('user_defined_fields',$fieldlist,'profile')) { - system_message(elgg_echo('profile:editdefault:delete:success')); -} else { - register_error(elgg_echo('profile:editdefault:delete:fail')); -} - -forward(REFERER);
\ No newline at end of file |