/
home
/
assocoweys
/
assoco
/
plugins
/
system
/
modulesanywhere
/
src
/
Form
/
Field
/
Upload File
HOME
<?php /** * @package Modules Anywhere * @version 8.1.2 * * @author Peter van Westen <info@regularlabs.com> * @link https://regularlabs.com * @copyright Copyright © 2024 Regular Labs All Rights Reserved * @license GNU General Public License version 2 or later */ namespace RegularLabs\Plugin\System\ModulesAnywhere\Form\Field; defined('_JEXEC') or die; use Joomla\CMS\Form\Field\ChromestyleField as JChromestyleField; use Joomla\CMS\HTML\HTMLHelper as JHTMLHelper; use Joomla\Database\DatabaseAwareInterface; use RegularLabs\Library\DB as RL_DB; class ChromeStyleField extends JChromestyleField { public static function getTemplateStyles() { $field = new self; $field->clientId = 0; if ( interface_exists('Joomla\Database\DatabaseAwareInterface') && $field instanceof DatabaseAwareInterface ) { $field->setDatabase(RL_DB::get()); } return $field->getTemplateModuleStyles(); } /** * Method to get the list of template chrome style options * grouped by template. * * @return array The field option objects as a nested array in groups. */ protected function getGroups() { $groups = []; $templateStyles = $this->getTemplateModuleStyles(); // Create one new option object for each available style, grouped by templates foreach ($templateStyles as $template => $styles) { $template = ucfirst($template); $groups[$template] = []; foreach ($styles as $style) { $tmp = JHTMLHelper::_('select.option', $template . '-' . $style, $style); $groups[$template][] = $tmp; } } reset($groups); return $groups; } }