@github Joomla Component Builder @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'); // import the list field type jimport('joomla.form.helper'); JFormHelper::loadFieldClass('list'); /** * Lang Form Field class for the Componentbuilder component */ class JFormFieldLang extends JFormFieldList { /** * The lang field type. * * @var string */ public $type = 'lang'; /** * Method to get a list of options for a list input. * * @return array An array of JHtml options. */ public function getOptions() { return null; } }