aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/index.php b/index.php
index f8069445f..a1fd608bf 100644
--- a/index.php
+++ b/index.php
@@ -380,6 +380,19 @@ if(count($arr)) {
}
}
+if($a->is_mobile || $a->is_tablet) {
+ if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
+ $link = $a->get_baseurl() . '/toggle_mobile?address=' . curPageURL();
+ }
+ else {
+ $link = $a->get_baseurl() . '/toggle_mobile?off=1&address=' . curPageURL();
+ }
+ $a->page['footer'] = replace_macros(get_markup_template("toggle_mobile_footer.tpl"), array(
+ '$toggle_link' => $link,
+ '$toggle_text' => t('toggle mobile')
+ ));
+}
+
$page = $a->page;
$profile = $a->profile;