aboutsummaryrefslogtreecommitdiff
path: root/views/default/admin/settings/profile_fields.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-11 23:14:09 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-11 23:14:09 +0000
commite68bf62084b0a90097b3b65d3ef12c2605e09289 (patch)
treea08e06ca7e3ec0301e318342caeb79155d56a80b /views/default/admin/settings/profile_fields.php
parentadae1958a95d7e801de91d673e927cac348236d9 (diff)
downloadelgg-e68bf62084b0a90097b3b65d3ef12c2605e09289.tar.gz
elgg-e68bf62084b0a90097b3b65d3ef12c2605e09289.tar.bz2
Refs #2991. First round at rearranging and grouping admin menu based upon tasks.
git-svn-id: http://code.elgg.org/elgg/trunk@8654 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/admin/settings/profile_fields.php')
-rw-r--r--views/default/admin/settings/profile_fields.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/views/default/admin/settings/profile_fields.php b/views/default/admin/settings/profile_fields.php
new file mode 100644
index 000000000..e9dc609e3
--- /dev/null
+++ b/views/default/admin/settings/profile_fields.php
@@ -0,0 +1,18 @@
+<?php
+/**
+ * Admin area: edit default profile fields
+ */
+
+$add = elgg_view_form('profile/fields/add', array(), array());
+$list = elgg_view('admin/settings/profile_fields/list');
+$reset = elgg_view_form('profile/fields/reset', array(), array());
+
+$body = <<<__HTML
+$add
+$list
+<div class="default_profile_reset">
+ $reset
+</div>
+__HTML;
+
+echo $body;