aboutsummaryrefslogtreecommitdiff
path: root/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
commit7f5de67cb46e028792e179a4f6314e13771086da (patch)
tree36828d43b5f1b8cd21c8ad1ef3fdd19b8564de9a /views/default/plugins/purity_theme/settings.php
downloadelgg-7f5de67cb46e028792e179a4f6314e13771086da.tar.gz
elgg-7f5de67cb46e028792e179a4f6314e13771086da.tar.bz2
Squashed 'mod/purity_theme/' content from commit 60df8b3
git-subtree-dir: mod/purity_theme git-subtree-split: 60df8b304bd70b5ddc79927abec1b1dc2eb706ee
Diffstat (limited to 'views/default/plugins/purity_theme/settings.php')
-rw-r--r--views/default/plugins/purity_theme/settings.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/views/default/plugins/purity_theme/settings.php b/views/default/plugins/purity_theme/settings.php
new file mode 100644
index 000000000..a16b29034
--- /dev/null
+++ b/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