blob: 84f595618e1a9216b0032da398cec4be6f7a11d2 (
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
54
55
56
|
<?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
* @link http://elgg.com/
*/
require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
admin_gatekeeper();
set_context('admin');
// Set admin user for user block
set_page_owner($_SESSION['guid']);
$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 .= elgg_view('input/form',
array(
'body' => elgg_view('input/submit', array('value' => elgg_echo('profile:resetdefault'))),
'action' => $CONFIG->wwwroot . 'actions/profile/editdefault/reset'
)
);
set_context('admin');
page_draw(elgg_echo('profile:edit:default'),elgg_view_layout("two_column_left_sidebar", '', $title . $form . $listing));
?>
|