aboutsummaryrefslogtreecommitdiff
path: root/views/default/expages/menu.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/expages/menu.php')
-rw-r--r--views/default/expages/menu.php23
1 files changed, 0 insertions, 23 deletions
diff --git a/views/default/expages/menu.php b/views/default/expages/menu.php
deleted file mode 100644
index a88536924..000000000
--- a/views/default/expages/menu.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?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'));