aboutsummaryrefslogtreecommitdiff
path: root/views/default/navigation/viewtype.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/navigation/viewtype.php')
-rw-r--r--views/default/navigation/viewtype.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/views/default/navigation/viewtype.php b/views/default/navigation/viewtype.php
new file mode 100644
index 000000000..103e9c450
--- /dev/null
+++ b/views/default/navigation/viewtype.php
@@ -0,0 +1,34 @@
+<?php
+
+ /**
+ * Elgg list view switcher
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Curverider Ltd
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+
+ $baseurl = preg_replace('/[\&\?]search\_viewtype\=[A-Za-z0-9]*/',"",$vars['baseurl']);
+
+ if ($vars['viewtype'] == "list") {
+ $viewtype = "gallery";
+ } else {
+ $viewtype = "list";
+ }
+
+ if (substr_count($baseurl,'?')) {
+ $baseurl .= "&search_viewtype=" . $viewtype;
+ } else {
+ $baseurl .= "?search_viewtype=" . $viewtype;
+ }
+
+?>
+
+ <p>
+ <?php echo elgg_echo("viewtype:change") ?>:
+ <a href="<?php echo $baseurl; ?>"><?php echo elgg_echo("viewtype:{$viewtype}"); ?></a>
+ </p> \ No newline at end of file