/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

  1. <?php
  2. /**
  3. * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
  4. * @license GNU General Public License version 2 or later; see LICENSE.txt
  5. */
  6. defined('JPATH_BASE') or die;
  7. JFormHelper::loadFieldClass('list');
  8. require_once dirname(__FILE__) . '/../../helpers/banners.php';
  9. /**
  10. * Bannerclient Field class for the Joomla Framework.
  11. *
  12. * @package Joomla.Administrator
  13. * @subpackage com_banners
  14. * @since 1.6
  15. */
  16. class JFormFieldBannerClient extends JFormFieldList
  17. {
  18. /**
  19. * The form field type.
  20. *
  21. * @var string
  22. * @since 1.6
  23. */
  24. protected $type = 'BannerClient';
  25. /**
  26. * Method to get the field options.
  27. *
  28. * @return array The field option objects.
  29. * @since 1.6
  30. */
  31. public function getOptions()
  32. {
  33. return BannersHelper::getClientOptions();
  34. }
  35. }