aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/defaultprofile.php
blob: 34e0af2d32b73d398c992e8e7fd707dd693a00a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
 * Elgg profile index
 *
 * @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-2010
 * @link http://elgg.com/
 */

require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");

admin_gatekeeper();
set_context('admin');

$title = elgg_view_title(elgg_echo('profile:edit:default'));
$form = elgg_view('profile/editdefaultprofile');

set_context('search');

// List form elements
$n = 0;
$loaded_defaults = array();
$items = array();
if ($fieldlist = get_plugin_setting('user_defined_fields', 'profile')) {
	$fieldlistarray = explode(',', $fieldlist);
	foreach($fieldlistarray as $listitem) {
		if ($translation = get_plugin_setting("admin_defined_profile_{$listitem}", 'profile')) {
			$item = new stdClass;
			$item->translation = $translation;
			$item->shortname = $listitem;
			$item->name = "admin_defined_profile_{$listitem}";
			$item->type = get_plugin_setting("admin_defined_profile_type_{$listitem}", 'profile');
			$items[] = $item;
		}
	}
}

$listing = elgg_view('profile/editdefaultprofileitems',array('items' => $items, 'fieldlist' => $fieldlist));

$listing .= elgg_view('input/form',
						array (
							'body' => elgg_view('input/submit', array('value' => elgg_echo('profile:resetdefault'))),
							'action' => $CONFIG->wwwroot . 'action/profile/editdefault/reset'
						)
					);

set_context('admin');

$body = elgg_view_layout("one_column_with_sidebar", $title . $form . $listing);

page_draw(elgg_echo('profile:edit:default'), $body);