blob: 7077687ccbf98a8cf340cd39689ca0bfd41e7cbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* Admin area: edit default profile fields
*/
$add = elgg_view_form('profile/fields/add', array(), array());
$list = elgg_view('admin/appearance/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;
|