* @git Joomla Component Builder * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ // No direct access to this file defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Factory; use Joomla\CMS\Language\Text; use Joomla\CMS\HTML\HTMLHelper as Html; jimport('joomla.form.helper'); \JFormHelper::loadFieldClass('checkboxes'); /** * Superpowerpaths Form Field class for the Componentbuilder component */ class JFormFieldSuperpowerpaths extends JFormFieldCheckboxes { /** * The superpowerpaths field type. * * @var string */ public $type = 'superpowerpaths'; // A DynamicCheckboxes@ Field /** * Method to get the field options. * * @return array The field option objects. * * @since 3.7.0 */ protected function getOptions() { // Get the databse object. $db = Factory::getDBO(); $query = $db->getQuery(true); $query->select($db->quoteName(array('a.repository', 'a.organisation'))) ->from($db->quoteName('#__componentbuilder_repository', 'a')) ->where($db->quoteName('a.published') . ' >= 1') ->where($db->quoteName('a.target') . ' = 1') // super powers ->order($db->quoteName('a.ordering') . ' ASC'); $db->setQuery((string)$query); $items = $db->loadObjectList(); $options = []; if ($items) { if ($this->multiple === false) { $options[] = Html::_('select.option', '', Text::_('COM_COMPONENTBUILDER_SELECT_AN_OPTION')); } foreach($items as $item) { $path = $item->organisation . '/' . $item->repository; $options[] = Html::_('select.option', $path, $path); } } else { $options[] = Html::_('select.option', '', Text::_('COM_COMPONENTBUILDER_NO_ACTIVE_REPOSITORIES_FOUND')); } return $options; } }