aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/defaultprofile.php
blob: 55638ba0294152cd4ce0abb1dbc65010c4732d6e (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
<?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();
while ($translation = get_plugin_setting("admin_defined_profile_$n", 'profile'))
{
	$type = get_plugin_setting("admin_defined_profile_type_$n", 'profile');
	$listing .= elgg_view("profile/", array('value' => $translation));	
	
	$even_odd = ( 'odd' != $even_odd ) ? 'odd' : 'even';					

	$listing .= "<p class=\"{$even_odd}\"><b>$translation: </b>";
	$listing .= elgg_view("output/{$type}",array('value' => " [$type]"));
	$listing .= "</p>";
	
	$n++;
}

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

set_context('admin');
	
page_draw(elgg_echo('profile:edit:default'),elgg_view_layout("one_column_with_sidebar", $title . $form . $listing));