diff options
author | Sem <sembrestels@riseup.net> | 2012-05-25 22:05:21 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-05-25 22:05:21 +0200 |
commit | 8ca38a323ad022f06a91d14d8fdc183e50392414 (patch) | |
tree | 05d185050dc41f2241b6e1c4e28c7926b87c62c2 /views/default/plugins/purity_theme/settings.php | |
parent | 08f0e922a806a27ef4e3ca96b59ef4bbfb08fde5 (diff) | |
parent | 60df8b304bd70b5ddc79927abec1b1dc2eb706ee (diff) | |
download | elgg-8ca38a323ad022f06a91d14d8fdc183e50392414.tar.gz elgg-8ca38a323ad022f06a91d14d8fdc183e50392414.tar.bz2 |
Forking Lorea/purity_theme
Conflicts:
graphics/elgg_sprites.png
manifest.xml
start.php
views/default/css/elements/buttons.php
views/default/css/elements/forms.php
views/default/css/elements/helpers.php
views/default/css/elements/layout.php
views/default/css/elements/typography.php
Diffstat (limited to 'views/default/plugins/purity_theme/settings.php')
-rw-r--r-- | views/default/plugins/purity_theme/settings.php | 24 |
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> </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>
\ No newline at end of file |