blob: a16b2903468dfe0714a37eb01d70676cf424bc8d (
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
|
<?php
$frontleft = $vars['entity']->frontleft;
if (!$frontleft) $frontleft='<h2>You can edit this information in the admin section of this theme.</h2>';
$frontright = $vars['entity']->frontright;
if (!$frontright) $frontright='<h2>You can edit this information in the admin section of this theme.</h2>';
$showpeople = $vars['entity']->showpeople;
if (!$showpeople) $showpeople = 'Right';
?>
<div id="purity_theme_admin">
<label>Show the default "people" image?</label><br/>
<?php echo elgg_view('input/dropdown',array('name'=>'params[showpeople]','value'=>$showpeople,'options'=>array('no','Left','Right'))); ?>
<p> </p>
<label>Front left text area:</label><br/>
<?php
echo elgg_view('input/longtext', array('name'=>'params[frontleft]','value'=>$frontleft));
?>
<p> </p>
<label>Front right text area:</label><br/>
<?php
echo elgg_view('input/longtext', array('name'=>'params[frontright]','value'=>$frontright));
?>
</div>
|