uawdijnntqw1x1x1
IP : 216.73.217.31
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_akeeba
/
.
/
CliCommands
/
MixIt
/
.
/
ComponentOptions.php
/
/
<?php /** * @package akeebabackup * @copyright Copyright (c)2006-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ namespace Akeeba\Backup\Admin\CliCommands\MixIt; defined('_JEXEC') || die; use Akeeba\Engine\Platform; use Joomla\CMS\Form\Form; use Joomla\CMS\Form\FormField; trait ComponentOptions { private function getComponentOptions(bool $defaultValuesOnly = false): array { $output = []; $fieldNames = []; $form = new Form('config'); $form->loadFile(JPATH_ADMINISTRATOR . '/components/com_akeeba/config.xml', true, '//config'); foreach ($form->getFieldsets() as $group => $fieldSetInfo) { $fields = $form->getFieldset($group); if (empty($fields)) { continue; } foreach ($fields as $fieldName => $v) { if (!is_object($v) || !($v instanceof FormField)) { continue; } if (substr((string) $v->type, -5) === 'Rules') { continue; } if (in_array(strtolower((string) $v->type), ['hidden', 'rules', 'spacer'])) { continue; } $fieldNames[$fieldName] = $v->value ?? null; } } if (!$defaultValuesOnly) { foreach ($fieldNames as $k => $default) { $output[$k] = Platform::getInstance()->get_platform_configuration_option($k, $default); } } return $output; } }
/home/pteabiscqq/www/administrator/components/com_akeeba/./CliCommands/MixIt/./ComponentOptions.php