31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-03 22:20:48 +00:00
patchtester/administrator/components/com_patchtester/src/Field/LabelField.php

53 lines
1.4 KiB
PHP
Raw Normal View History

2020-11-28 13:43:53 +00:00
<?php
2020-11-28 13:43:53 +00:00
/**
* Patch testing component for the Joomla! CMS
*
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2018 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later
*/
namespace Joomla\Component\Patchtester\Administrator\Field;
2020-11-28 13:43:53 +00:00
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects
2020-11-28 13:43:53 +00:00
/**
* List of available banks.
*
* @package PatchTester
* @since 4.1.0
*/
class LabelField extends ListField
{
/**
* Type of field
*
* @var string
* @since 4.1.0
*/
protected $type = 'Label';
/**
* Build a list of available fields.
*
* @return array List of options
*
* @since 4.1.0
*/
public function getOptions(): array
{
$db = Factory::getContainer()->get('DatabaseDriver');
$query = $db->getQuery(true);
$query->select('DISTINCT(' . $db->quoteName('name') . ') AS ' . $db->quoteName('text'))
->select($db->quoteName('name', 'value'))
->from($db->quoteName('#__patchtester_pulls_labels'))
->order($db->quoteName('name') . ' ASC');
$options = $db->setQuery($query)->loadAssocList();
return array_merge(parent::getOptions(), $options);
}
2020-11-28 13:43:53 +00:00
}