reset.php 443 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Reset profile fields action
  4. *
  5. */
  6. $fieldlist = elgg_get_config('profile_custom_fields');
  7. if ($fieldlist) {
  8. $fieldlistarray = explode(',', $fieldlist);
  9. foreach ($fieldlistarray as $listitem) {
  10. unset_config("admin_defined_profile_{$listitem}");
  11. unset_config("admin_defined_profile_type_{$listitem}");
  12. }
  13. }
  14. unset_config('profile_custom_fields');
  15. system_message(elgg_echo('profile:defaultprofile:reset'));
  16. forward(REFERER);