Source for file bannerclient.php

Documentation is available at bannerclient.php

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

Documentation generated on Tue, 19 Nov 2013 14:54:18 +0100 by phpDocumentor 1.4.3