forked from joomla/Component-Builder
Robot
d1e1a56671
Move beta to main repo. Fix #1053 so that the right and left tabs display correctly in Joomla 4&5.
67 lines
1.9 KiB
PHP
67 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* @package Joomla.Component.Builder
|
|
*
|
|
* @created 30th April, 2015
|
|
* @author Llewellyn van der Merwe <https://dev.vdm.io>
|
|
* @git Joomla Component Builder <https://git.vdm.dev/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;
|
|
use VDM\Joomla\Utilities\StringHelper;
|
|
|
|
// import the list field type
|
|
jimport('joomla.form.helper');
|
|
JFormHelper::loadFieldClass('list');
|
|
|
|
/**
|
|
* Adminviewfolderlist Form Field class for the Componentbuilder component
|
|
*/
|
|
class JFormFieldAdminviewfolderlist extends JFormFieldList
|
|
{
|
|
/**
|
|
* 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.
|
|
*/
|
|
protected function getOptions()
|
|
{
|
|
// get custom folder files
|
|
$localfolders = [];
|
|
$localfolders[] = JPATH_ADMINISTRATOR . '/components/com_componentbuilder/views';
|
|
$localfolders[] = JPATH_ADMINISTRATOR . '/components/com_componentbuilder/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_COMPONENTBUILDER_SELECT_AN_ADMIN_VIEW'));
|
|
}
|
|
foreach ($folders as $folder)
|
|
{
|
|
$options[] = Html::_('select.option', $folder, StringHelper::safe($folder, 'W'));
|
|
}
|
|
}
|
|
}
|
|
return $options;
|
|
}
|
|
}
|