39 lines
826 B
PHP
39 lines
826 B
PHP
<?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/>.
|
|
*/
|
|
|
|
use JchOptimize\Core\Admin\Helper;
|
|
|
|
defined('_JEXEC') or die;
|
|
|
|
include_once dirname(__FILE__) . '/exclude.php';
|
|
|
|
class JFormFieldExcludelazyloadclass extends JFormFieldExclude
|
|
{
|
|
public $type = 'excludelazyloadclass';
|
|
public string $filetype = 'lazyload';
|
|
public string $filegroup = 'class';
|
|
|
|
protected function getInput()
|
|
{
|
|
if ( ! JCH_PRO )
|
|
{
|
|
return Helper::proOnlyField();
|
|
}
|
|
else
|
|
{
|
|
return parent::getInput();
|
|
}
|
|
}
|
|
|
|
}
|