| Current Path : /home/chauffn/vuzelia/2023/administrator/components/com_convertforms/ConvertForms/Field/ |
| Current File : /home/chauffn/vuzelia/2023/administrator/components/com_convertforms/ConvertForms/Field/Heading.php |
<?php
/**
* @package Convert Forms
* @version 3.2.11 Pro
*
* @author Tassos Marinos <info@tassos.gr>
* @link http://www.tassos.gr
* @copyright Copyright © 2018 Tassos Marinos All Rights Reserved
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later
*/
namespace ConvertForms\Field;
defined('_JEXEC') or die('Restricted access');
class Heading extends \ConvertForms\Field
{
/**
* Indicates the default required behavior on the form
*
* @var bool
*/
protected $required = false;
/**
* Remove common fields from the form rendering
*
* @var mixed
*/
protected $excludeFields = array(
'name',
'placeholder',
'browserautocomplete',
'size',
'required',
'hidelabel',
'inputcssclass',
'value'
);
}
?>