Exemplo n.º 1
0
 /**
  * Constructor.
  *
  * @param	array	An optional associative array of configuration settings.
  * @see		JController
  * @since	1.6
  */
 public function __construct($config = array())
 {
     if (empty($config['filter_fields'])) {
         $config['filter_fields'] = array('name', 'client_id', 'enabled', 'type', 'folder', 'extension_id');
     }
     parent::__construct($config);
 }
Exemplo n.º 2
0
 /**
  * Constructor.
  *
  * @param   array  $config  An optional associative array of configuration settings.
  *
  * @see     JController
  * @since   3.4
  */
 public function __construct($config = array())
 {
     if (empty($config['filter_fields'])) {
         $config['filter_fields'] = array('update_site_name', 'name', 'client_id', 'client', 'client_translated', 'status', 'type', 'type_translated', 'folder', 'folder_translated', 'update_site_id', 'enabled');
     }
     parent::__construct($config);
 }
Exemplo n.º 3
0
	/**
	 * Overridden constructor
	 * @access	protected
	 */
	function __construct()
	{
		global $mainframe;

		// Call the parent constructor
		parent::__construct();
	}
Exemplo n.º 4
0
 /**
  * Overridden constructor
  * @access	protected
  */
 function __construct()
 {
     global $mainframe;
     // Call the parent constructor
     parent::__construct();
     // Set state variables from the request
     $this->setState('filter.string', $mainframe->getUserStateFromRequest("com_rsgallery2_com_installer.templates.string", 'filter', '', 'string'));
 }
Exemplo n.º 5
0
 /**
  * Overridden constructor
  * @access	protected
  */
 function __construct()
 {
     $mainframe = JFactory::getApplication();
     // Call the parent constructor
     parent::__construct();
     // Set state variables from the request
     $this->setState('filter.string', $mainframe->getUserStateFromRequest("com_jckman.plugin.string", 'filter', '', 'string'));
 }
Exemplo n.º 6
0
 /**
  * Overridden constructor
  * @access	protected
  */
 function __construct()
 {
     global $mainframe;
     // Call the parent constructor
     parent::__construct();
     // Set state variables from the request
     $this->setState('filter.string', $mainframe->getUserStateFromRequest("com_installer.languages.string", 'filter', '', 'string'));
     $this->setState('filter.client', $mainframe->getUserStateFromRequest("com_installer.languages.client", 'client', -1, 'int'));
 }
Exemplo n.º 7
0
 /**
  * Overridden constructor
  * @access	protected
  */
 function __construct()
 {
     global $mainframe;
     // Call the parent constructor
     parent::__construct();
     // Set state variables from the request
     $this->setState('filter.group', $mainframe->getUserStateFromRequest("com_installer.plugins.group", 'group', '', 'cmd'));
     $this->setState('filter.string', $mainframe->getUserStateFromRequest("com_installer.plugins.string", 'filter', '', 'string'));
 }
Exemplo n.º 8
0
 /**
  * Overridden constructor
  * @access	protected
  */
 function __construct()
 {
     // Call the parent constructor
     parent::__construct();
 }