diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:50:57 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-03-15 14:50:57 -0300 |
commit | ef47af966edaf727834758f1a4fc7b1c19a0f230 (patch) | |
tree | f853217022b5e1a868a227dddc5c8010f4266e55 /views/default/expages | |
download | elgg-ef47af966edaf727834758f1a4fc7b1c19a0f230.tar.gz elgg-ef47af966edaf727834758f1a4fc7b1c19a0f230.tar.bz2 |
Squashed 'mod/simple_faq/' content from commit 1852794
git-subtree-dir: mod/simple_faq
git-subtree-split: 1852794b849fcbab29c2b37ca6c106dc0cb9903d
Diffstat (limited to 'views/default/expages')
-rw-r--r-- | views/default/expages/menu.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/views/default/expages/menu.php b/views/default/expages/menu.php new file mode 100644 index 000000000..a88536924 --- /dev/null +++ b/views/default/expages/menu.php @@ -0,0 +1,23 @@ +<?php +/** + * External pages menu + * + * @uses $vars['type'] + */ + +$type = $vars['type']; + +//set the url +$url = $vars['url'] . "admin/site/expages?type="; + +$pages = array('about', 'terms', 'privacy', 'faq'); +$tabs = array(); +foreach ($pages as $page) { + $tabs[] = array( + 'title' => elgg_echo("expages:$page"), + 'url' => "admin/appearance/expages?type=$page", + 'selected' => $page == $type, + ); +} + +echo elgg_view('navigation/tabs', array('tabs' => $tabs, 'class' => 'elgg-form-settings')); |