uawdijnntqw1x1x1
IP : 216.73.216.219
Hostname : webm015.cluster127.gra.hosting.ovh.net
Kernel : Linux webm015.cluster127.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
/
pteabiscqq
/
.
/
.
/
www
/
.
/
administrator
/
components
/
com_admin
/
views
/
sysinfo
/
view.json.php
/
/
<?php /** * @package Joomla.Administrator * @subpackage com_admin * * @copyright (C) 2015 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Sysinfo View class for the Admin component * * @since 3.5 */ class AdminViewSysinfo extends JViewLegacy { /** * Execute and display a template script. * * @param string $tpl The name of the template file to parse; automatically searches through the template paths. * * @return mixed A string if successful, otherwise an Error object. * * @since 3.5 */ public function display($tpl = null) { // Access check. if (!JFactory::getUser()->authorise('core.admin')) { throw new JAccessExceptionNotallowed(JText::_('JERROR_ALERTNOAUTHOR'), 403); } header('MIME-Version: 1.0'); header('Content-Disposition: attachment; filename="systeminfo-' . date('c') . '.json"'); header('Content-Transfer-Encoding: binary'); $data = $this->getLayoutData(); echo json_encode($data); JFactory::getApplication()->close(); } /** * Get the data for the view * * @return array * * @since 3.5 */ protected function getLayoutData() { $model = $this->getModel(); return array( 'info' => $model->getSafeData('info'), 'phpSettings' => $model->getSafeData('phpSettings'), 'config' => $model->getSafeData('config'), 'directories' => $model->getSafeData('directory', true), 'phpInfo' => $model->getSafeData('phpInfoArray'), 'extensions' => $model->getSafeData('extensions') ); } }
/home/pteabiscqq/././www/./administrator/components/com_admin/views/sysinfo/view.json.php