mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
23 lines
342 B
PHP
23 lines
342 B
PHP
<?php
|
|
namespace Zotlabs\Module;
|
|
|
|
|
|
class Toggle_mobile extends \Zotlabs\Web\Controller {
|
|
|
|
function init() {
|
|
|
|
if(isset($_GET['off']))
|
|
$_SESSION['show_mobile'] = false;
|
|
else
|
|
$_SESSION['show_mobile'] = true;
|
|
|
|
if(isset($_GET['address']))
|
|
$address = $_GET['address'];
|
|
else
|
|
$address = z_root();
|
|
|
|
goaway($address);
|
|
}
|
|
|
|
|
|
}
|