uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm009.cluster128.gra.hosting.ovh.net
Kernel : Linux webm009.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
OS : Linux
PATH:
/
home
/
chauffn
/
vuzelia
/
2023
/
cf455
/
..
/
components
/
com_privacy
/
src
/
Controller
/
DisplayController.php
/
/
<?php /** * @package Joomla.Site * @subpackage com_privacy * * @copyright (C) 2018 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\Component\Privacy\Site\Controller; use Joomla\CMS\MVC\Controller\BaseController; // phpcs:disable PSR1.Files.SideEffects \defined('_JEXEC') or die; // phpcs:enable PSR1.Files.SideEffects /** * Privacy Controller * * @since 3.9.0 */ class DisplayController extends BaseController { /** * Method to display a view. * * @param boolean $cachable If true, the view output will be cached * @param array $urlparams An array of safe URL parameters and their variable types. * @see \Joomla\CMS\Filter\InputFilter::clean() for valid values. * * @return $this * * @since 3.9.0 */ public function display($cachable = false, $urlparams = []) { $view = $this->input->get('view', $this->default_view); // Set a Referrer-Policy header for views which require it if (in_array($view, ['confirm', 'remind'])) { $this->app->setHeader('Referrer-Policy', 'no-referrer', true); } return parent::display($cachable, $urlparams); } }
/home/chauffn/vuzelia/2023/cf455/../components/com_privacy/src/Controller/DisplayController.php