Done !
| Server IP : 46.105.57.169 / Your IP : 216.73.216.67 Web Server : Apache System : Linux webm002.cluster120.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 User : verseaumee ( 152031) PHP Version : 8.5.7 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaumee/zenit/administrator/components/com_akeebabackup/src/Field/ |
Upload File : |
<?php
/**
* @package akeebabackup
* @copyright Copyright (c)2006-2021 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU General Public License version 3, or later
*/
namespace Akeeba\Component\AkeebaBackup\Administrator\Field;
defined('_JEXEC') || die();
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
use Joomla\CMS\Language\Text;
use Joomla\Database\DatabaseDriver;
/**
* Our main element class, creating a multi-select list out of an SQL statement
*/
class BackupprofilesField extends ListField
{
protected $type = 'Backupprofiles';
protected function getInput()
{
// The default option goes on top
$showNone = $this->element['show_none'] ? (string) $this->element['show_none'] : '';
$showNone = in_array(strtolower($showNone), ['yes', '1', 'true', 'on']);
if ($showNone)
{
$this->addOption(Text::_('COM_AKEEBABACKUP_FILTER_SELECT_PROFILEID'), [
'value' => ''
]);
}
// Add options for each and every backup profile
/** @var DatabaseDriver $db */
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true)
->select([
$db->qn('id'),
$db->qn('description'),
])->from($db->qn('#__akeebabackup_profiles'));
$db->setQuery($query);
$objectList = $db->loadObjectList() ?? [];
foreach ($objectList as $o)
{
$this->addOption("#{$o->id}: {$o->description}", [
'value' => $o->id,
]);
}
// Call the parent method and be done with it
return parent::getInput();
}
}