uawdijnntqw1x1x1
IP : 216.73.216.168
Hostname : server.fattispazio.it
Kernel : Linux server.fattispazio.it 3.10.0-1160.144.1.el7.tuxcare.els4.x86_64 #1 SMP Tue Apr 7 08:40:40 UTC 2026 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
poliximo
/
public_html
/
4690b
/
..
/
htm
/
administrator
/
components
/
com_modules
/
helpers
/
xml.php
/
/
<?php /** * @package Joomla.Administrator * @subpackage com_modules * * @copyright Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; JLog::add('ModulesHelperXML is deprecated. Do not use.', JLog::WARNING, 'deprecated'); /** * Helper for parse XML module files * * @since 1.5 * @deprecated 3.2 Do not use. */ class ModulesHelperXML { /** * Parse the module XML file * * @param array &$rows XML rows * * @return void * * @since 1.5 * * @deprecated 3.2 Do not use. */ public function parseXMLModuleFile(&$rows) { foreach ($rows as $i => $row) { if ($row->module == '') { $rows[$i]->name = 'custom'; $rows[$i]->module = 'custom'; $rows[$i]->descrip = 'Custom created module, using Module Manager New function'; } else { $data = JInstaller::parseXMLInstallFile($row->path . '/' . $row->file); if ($data['type'] == 'module') { $rows[$i]->name = $data['name']; $rows[$i]->descrip = $data['description']; } } } } }
/home/poliximo/public_html/4690b/../htm/administrator/components/com_modules/helpers/xml.php