2018-09-24 14:37:51 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @package Joomla.Component.Builder
|
|
|
|
*
|
|
|
|
* @created 30th April, 2015
|
|
|
|
* @author Llewellyn van der Merwe <http://www.joomlacomponentbuilder.com>
|
|
|
|
* @github Joomla Component Builder <https://github.com/vdm-io/Joomla-Component-Builder>
|
2021-01-03 16:49:35 +00:00
|
|
|
* @copyright Copyright (C) 2015 Vast Development Method. All rights reserved.
|
2018-09-24 14:37:51 +00:00
|
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
?>
|
|
|
|
###BOM###
|
|
|
|
|
|
|
|
// No direct access to this file
|
|
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
|
2020-07-07 15:13:04 +00:00
|
|
|
###JFORM_TYPE_HEADER###
|
2018-09-24 14:37:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* ###Type### Form Field class for the ###Component### component
|
|
|
|
*/
|
2019-07-19 02:17:15 +00:00
|
|
|
class ###JPREFIX###FormField###Type### extends JFormField###JFORM_EXTENDS###
|
2018-09-24 14:37:51 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The ###type### field type.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
public $type = '###type###';###JFORM_TYPE_PHP###
|
|
|
|
}
|