blob: 6959b2a82de096d0883dab53af6061fe06d18fa5 (
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
|
<?php
/**
* Elgg widget edit settings
*
* @uses $vars['widget']
* @uses $vars['show_access']
*/
$widget = $vars['widget'];
$show_access = elgg_extract('show_access', $vars, true);
$edit_view = "widgets/$widget->handler/edit";
$custom_form_section = elgg_view($edit_view, array('entity' => $widget));
$access = '';
if ($show_access) {
$access = elgg_echo('access') . ': ' . elgg_view('input/access', array(
'name' => 'params[access_id]',
'value' => $widget->access_id,
));
}
if (!$custom_form_section && !$access) {
return true;
}
$hidden = elgg_view('input/hidden', array('name' => 'guid', 'value' => $widget->guid));
$submit = elgg_view('input/submit', array('value' => elgg_echo('save')));
$body = <<<___END
$custom_form_section
<div>
$access
</div>
<div class="elgg-foot">
$hidden
$submit
</div>
___END;
echo $body;
|