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
|
<?php
$widget_title = $vars['entity']->widget_title;
$html_content = $vars['entity']->html_content;
$guest_only = $vars['entity']->guest_only;
if (!isset($guest_only)) $guest_only = "no";
$box_style = $vars['entity']->box_style;
if (!isset($box_style)) $box_style = "collapsable";
?>
<p>
<?php echo elgg_echo('custom_index_widgets:widget_title'); ?>:
<?php
echo elgg_view('input/text', array(
'name' => 'params[widget_title]',
'value' => $widget_title
));
?>
</p>
<p>
<?php echo elgg_echo('custom_index_widgets:html_content'); ?>
<?php
echo elgg_view('input/longtext', array(
'name' => 'params[html_content]',
'value' => $html_content
));
?>
</p>
<p>
<?php echo elgg_echo('custom_index_widgets:box_style'); ?>
:
<?php
echo elgg_view('input/dropdown', array('name'=>'params[box_style]',
'options_values'=>array('plain'=>'Plain', 'plain collapsable'=>'Plain and collapsable', 'collapsable'=>'Collapsable', 'standard' => 'No Collapsable'),
'value'=>$box_style));
?>
</p>
<p>
<?php echo elgg_echo('custom_index_widgets:guest_only'); ?>
:
<?php
echo elgg_view('input/dropdown', array('name'=>'params[guest_only]',
'options_values'=>array('yes'=>'yes', 'no'=>'no'),
'value'=>$guest_only));
?>
</p>
|