/administrator/components/com_banners/models/fields/bannerclient.php
https://bitbucket.org/kraymitchell/fcd · PHP · 40 lines · 12 code · 5 blank · 23 comment · 0 complexity · 514649ba143cea89afaa4e29864f9bf6 MD5 · raw file
- <?php
- /**
- * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
- * @license GNU General Public License version 2 or later; see LICENSE.txt
- */
- defined('JPATH_BASE') or die;
- JFormHelper::loadFieldClass('list');
- require_once dirname(__FILE__) . '/../../helpers/banners.php';
- /**
- * Bannerclient Field class for the Joomla Framework.
- *
- * @package Joomla.Administrator
- * @subpackage com_banners
- * @since 1.6
- */
- class JFormFieldBannerClient extends JFormFieldList
- {
- /**
- * The form field type.
- *
- * @var string
- * @since 1.6
- */
- protected $type = 'BannerClient';
- /**
- * Method to get the field options.
- *
- * @return array The field option objects.
- * @since 1.6
- */
- public function getOptions()
- {
- return BannersHelper::getClientOptions();
- }
- }