aboutsummaryrefslogtreecommitdiff
path: root/mod/purity_theme/views/default/plugins/purity_theme/settings.php
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:53:42 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:53:42 -0300
commit1a4a96bd03e016e5d32a5c3050f40c1011a0f893 (patch)
tree5e78707ffd40968f15778cc345cbf27489423cf6 /mod/purity_theme/views/default/plugins/purity_theme/settings.php
parente10b0bd1f9403d38568173d76a93f93a484d9646 (diff)
parent7f5de67cb46e028792e179a4f6314e13771086da (diff)
downloadelgg-1a4a96bd03e016e5d32a5c3050f40c1011a0f893.tar.gz
elgg-1a4a96bd03e016e5d32a5c3050f40c1011a0f893.tar.bz2
Merge commit '7f5de67cb46e028792e179a4f6314e13771086da' as 'mod/purity_theme'
Diffstat (limited to 'mod/purity_theme/views/default/plugins/purity_theme/settings.php')
-rw-r--r--mod/purity_theme/views/default/plugins/purity_theme/settings.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/mod/purity_theme/views/default/plugins/purity_theme/settings.php b/mod/purity_theme/views/default/plugins/purity_theme/settings.php
new file mode 100644
index 000000000..a16b29034
--- /dev/null
+++ b/mod/purity_theme/views/default/plugins/purity_theme/settings.php
@@ -0,0 +1,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>&nbsp;</p>
+ <label>Front left text area:</label><br/>
+ <?php
+ echo elgg_view('input/longtext', array('name'=>'params[frontleft]','value'=>$frontleft));
+ ?>
+ <p>&nbsp;</p>
+ <label>Front right text area:</label><br/>
+ <?php
+ echo elgg_view('input/longtext', array('name'=>'params[frontright]','value'=>$frontright));
+ ?>
+
+</div> \ No newline at end of file