first commit

This commit is contained in:
2026-02-08 21:16:11 +01:00
commit e17b7026fd
8881 changed files with 1160453 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<?php
/**
* JCH Optimize - Performs several front-end optimizations for fast downloads
*
* @package jchoptimize/joomla-platform
* @author Samuel Marshall <samuel@jch-optimize.net>
* @copyright Copyright (c) 2020 Samuel Marshall / JCH Optimize
* @license GNU/GPLv3, or later. See LICENSE file
*
* If LICENSE file missing, see <http://www.gnu.org/licenses/>.
*/
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();
}
}