2012-09-12 23:35:51 -04:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2017-08-26 02:04:21 -04:00
|
|
|
use Friendica\Core\System;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-01-09 07:14:55 -05:00
|
|
|
function toggle_mobile_init(App $a) {
|
2012-09-12 23:35:51 -04:00
|
|
|
|
2016-12-20 06:36:51 -05:00
|
|
|
if (isset($_GET['off'])) {
|
2012-09-12 23:35:51 -04:00
|
|
|
$_SESSION['show-mobile'] = false;
|
2016-12-20 06:36:51 -05:00
|
|
|
} else {
|
2012-09-12 23:35:51 -04:00
|
|
|
$_SESSION['show-mobile'] = true;
|
2016-12-20 06:36:51 -05:00
|
|
|
}
|
2012-09-12 23:35:51 -04:00
|
|
|
|
2016-12-20 06:36:51 -05:00
|
|
|
if (isset($_GET['address'])) {
|
2012-09-12 23:35:51 -04:00
|
|
|
$address = $_GET['address'];
|
2016-12-20 06:36:51 -05:00
|
|
|
} else {
|
2017-08-26 03:32:10 -04:00
|
|
|
$address = System::baseUrl();
|
2016-12-20 06:36:51 -05:00
|
|
|
}
|
2012-09-12 23:35:51 -04:00
|
|
|
|
|
|
|
goaway($address);
|
|
|
|
}
|