31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-06-01 21:20:48 +00:00
patchtester/administrator/components/com_patchtester/PatchTester/Field/LabelField.php
2020-11-28 14:43:53 +01:00

54 lines
1.2 KiB
PHP

<?php
/**
* 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 PatchTester\Field;
use Joomla\CMS\Factory;
use Joomla\CMS\Form\Field\ListField;
defined('_JEXEC') or die;
/**
* 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);
}
}