uawdijnntqw1x1x1
IP : 216.73.216.17
Hostname : webm005.cluster103.gra.hosting.ovh.net
Kernel : Linux webm005.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
malvinas
/
www
/
bab49
/
..
/
ftye2zp
/
..
/
feijubx
/
..
/
fe8ji9u
/
..
/
components
/
com_tags
/
controller.php
/
/
<?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright (C) 2013 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Tags Component Controller * * @since 3.1 */ class TagsController extends JControllerLegacy { /** * Method to display a view. * * @param boolean $cachable If true, the view output will be cached * @param mixed|boolean $urlparams An array of safe URL parameters and their variable types, for valid values see {@link JFilterInput::clean()}. * * @return JControllerLegacy This object to support chaining. * * @since 3.1 */ public function display($cachable = false, $urlparams = false) { $user = JFactory::getUser(); // Set the default view name and format from the Request. $vName = $this->input->get('view', 'tags'); $this->input->set('view', $vName); if ($user->get('id') || ($this->input->getMethod() === 'POST' && $vName === 'tags')) { $cachable = false; } $safeurlparams = array( 'id' => 'ARRAY', 'type' => 'ARRAY', 'limit' => 'UINT', 'limitstart' => 'UINT', 'filter_order' => 'CMD', 'filter_order_Dir' => 'CMD', 'lang' => 'CMD' ); return parent::display($cachable, $safeurlparams); } }
/home/malvinas/www/bab49/../ftye2zp/../feijubx/../fe8ji9u/../components/com_tags/controller.php