aboutsummaryrefslogtreecommitdiff
path: root/views/default/widgets/settings.php
blob: 73166b7182058f31bbcd9db2de11cc9c3d97d4e1 (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
<?php
/**
 * Elgg widget edit settings
 *
 * @package Elgg
 * @subpackage Core
 */

$widget = $vars['widget'];

$edit_view = "widgets/$widget->handler/edit";
$custom_form_section = elgg_view($edit_view, array('entity' => $widget));

$access_text = elgg_echo('access');
$access = elgg_view('input/access', array('internalname' => 'params[access_id]','value' => $widget->access_id));
$hidden = elgg_view('input/hidden', array('internalname' => 'guid', 'value' => $widget->guid));
$submit = elgg_view('input/submit', array('value' => elgg_echo('save')));

$body = <<<___END
	$custom_form_section
	<p>
		<label>$access_text:</label> $access
	</p>
	<p>
		$hidden
		$submit
	</p>
___END;

?>
<div class="widget_edit">
<?php
$params = array(
	'body' => $body,
	'action' => "action/widgets/save"
);
echo elgg_view('input/form', $params);
?>
</div>