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