@my wife Roline van der Merwe @copyright Copyright (C) 2015. All Rights Reserved @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html Builds Complex Joomla Components /-----------------------------------------------------------------------------------------------------------------------------*/ // 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'); // import the list field type jimport('joomla.form.helper'); JFormHelper::loadFieldClass('radio'); /** * ###Type### Form Field class for the ###Component### component */ class JFormField###Type### extends JFormFieldRadio { /** * The ###type### field type. * * @var string */ public $type = '###type###'; /** * Method to get a list of options for a list input. * * @return array An array of JHtml options. */ public function getOptions() { ###JFORM_GETOPTIONS_PHP### } }