One Hat Cyber Team
Your IP:
216.73.216.75
Server IP:
213.186.33.17
Server:
Linux webm007.cluster106.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Create File
|
Create Folder
Execute
Dir :
~
/
home
/
tcherkas
/
micha.paris
/
plugins
/
mobile
/
always
/
Edit File:
always.php
<?php /** * Mobile Joomla! * http://www.mobilejoomla.com * * @version 2.1.12 * @license GNU/GPL v2 - http://www.gnu.org/licenses/gpl-2.0.html * @copyright (C) 2008-2016 Mobile Joomla! * @date October 2016 */ defined('_JEXEC') or die('Restricted access'); jimport('joomla.plugin.plugin'); class plgMobileAlways extends JPlugin { public function __construct(&$subject, $config) { parent::__construct($subject, $config); if (!isset($this->params)) { $this->params = new JParameter(null); } } public function onMjGetDeviceList() { return array( 'desktop' => 'Desktop', 'mobile' => 'Mobile' ); } public function onDeviceDetection($mj) { /** @var MjDevice $mjDevice */ $mjDevice = $mj->device; $markup = $this->params->get('markup', ''); if ($markup) { $mjDevice->markup = $markup; } } }
Simpan