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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
<?php
/**
* Edit profile form
*
* @uses vars['entity']
*/
?>
<div>
<label><?php echo elgg_echo('user:name:label'); ?></label>
<?php echo elgg_view('input/text', array('name' => 'name', 'value' => $vars['entity']->name)); ?>
</div>
<?php
$sticky_values = elgg_get_sticky_values('profile:edit');
$profile_fields = elgg_get_config('profile_fields');
if (is_array($profile_fields) && count($profile_fields) > 0) {
foreach ($profile_fields as $shortname => $valtype) {
$metadata = elgg_get_metadata(array(
'guid' => $vars['entity']->guid,
'metadata_name' => $shortname,
'limit' => false
));
if ($metadata) {
if (is_array($metadata)) {
$value = '';
foreach ($metadata as $md) {
if (!empty($value)) {
$value .= ', ';
}
$value .= $md->value;
$access_id = $md->access_id;
}
} else {
$value = $metadata->value;
$access_id = $metadata->access_id;
}
} else {
$value = '';
$access_id = ACCESS_DEFAULT;
}
// sticky form values take precedence over saved ones
if (isset($sticky_values[$shortname])) {
$value = $sticky_values[$shortname];
}
if (isset($sticky_values['accesslevel'][$shortname])) {
$access_id = $sticky_values['accesslevel'][$shortname];
}
?>
<div>
<label><?php echo elgg_echo("profile:{$shortname}") ?></label>
<?php
$params = array(
'name' => $shortname,
'value' => $value,
);
echo elgg_view("input/{$valtype}", $params);
$params = array(
'name' => "accesslevel[$shortname]",
'value' => $access_id,
);
echo elgg_view('input/access', $params);
?>
</div>
<?php
}
}
elgg_clear_sticky_form('profile:edit');
?>
<div class="elgg-foot">
<?php
echo elgg_view('input/hidden', array('name' => 'guid', 'value' => $vars['entity']->guid));
echo elgg_view('input/submit', array('value' => elgg_echo('save')));
?>
</div>
|