* @copyright Copyright (c) 2020 Samuel Marshall / JCH Optimize * @license GNU/GPLv3, or later. See LICENSE file * * If LICENSE file missing, see . */ defined( '_JEXEC' ) or die; use JchOptimize\Platform\Plugin; use Joomla\CMS\HTML\HTMLHelper; include_once dirname( __FILE__ ) . '/exclude.php'; class JFormFieldExcludecss extends JFormFieldExclude { public $type = 'excludecss'; public string $filetype = 'css'; public string $filegroup = 'file'; /** * * @return type */ protected function getInput() { $this->first_field = true; return parent::getInput(); } }