@copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html A sermon distributor that links to Dropbox. /----------------------------------------------------------------------------------------------------------------------------------*/ namespace TrueChristianChurch\Component\Sermondistributor\Administrator\Field; use Joomla\CMS\Factory; use Joomla\CMS\Form\Field\ListField; use Joomla\CMS\Language\Text; use Joomla\CMS\HTML\HTMLHelper as Html; use Joomla\CMS\Component\ComponentHelper; use TrueChristianChurch\Component\Sermondistributor\Administrator\Helper\SermondistributorHelper; use VDM\Joomla\Utilities\StringHelper; // No direct access to this file \defined('_JEXEC') or die; /** * Adminviewfolderlist Form Field class for the Sermondistributor component * * @since 1.6 */ class AdminviewfolderlistField extends ListField { /** * The adminviewfolderlist field type. * * @var string */ public $type = 'Adminviewfolderlist'; /** * Method to get a list of options for a list input. * * @return array An array of Html options. * @since 1.6 */ protected function getOptions() { // get custom folder files $localfolders = []; $localfolders[] = JPATH_ADMINISTRATOR . '/components/com_sermondistributor/views'; $localfolders[] = JPATH_ADMINISTRATOR . '/components/com_sermondistributor/src/View'; // set the default $options = []; // now check if there are files in the folder foreach ($localfolders as $localfolder) { if (is_dir($localfolder) && $folders = \Joomla\Filesystem\Folder::folders($localfolder)) { if ($this->multiple === false) { $options[] = Html::_('select.option', '', Text::_('COM_SERMONDISTRIBUTOR_SELECT_AN_ADMIN_VIEW')); } foreach ($folders as $folder) { $options[] = Html::_('select.option', $folder, StringHelper::safe($folder, 'W')); } } } return $options; } }