當前位置: 首頁>>代碼示例>>PHP>>正文


PHP InstallerModel::__construct方法代碼示例

本文整理匯總了PHP中InstallerModel::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP InstallerModel::__construct方法的具體用法?PHP InstallerModel::__construct怎麽用?PHP InstallerModel::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在InstallerModel的用法示例。


在下文中一共展示了InstallerModel::__construct方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: __construct

 /**
  * 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);
 }
開發者ID:scarsroga,項目名稱:blog-soa,代碼行數:14,代碼來源:manage.php

示例2: __construct

 /**
  * 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);
 }
開發者ID:Rai-Ka,項目名稱:joomla-cms,代碼行數:15,代碼來源:updatesites.php

示例3:

	/**
	 * Overridden constructor
	 * @access	protected
	 */
	function __construct()
	{
		global $mainframe;

		// Call the parent constructor
		parent::__construct();
	}
開發者ID:rkern21,項目名稱:videoeditor,代碼行數:11,代碼來源:extension.php

示例4:

 /**
  * 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'));
 }
開發者ID:realityking,項目名稱:rsgallery2,代碼行數:12,代碼來源:template.php

示例5:

 /**
  * 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'));
 }
開發者ID:kaantunc,項目名稱:MYK-BOR,代碼行數:13,代碼來源:languages.php

示例6:

 /**
  * 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'));
 }
開發者ID:Fellah,項目名稱:govnobaki,代碼行數:13,代碼來源:plugins.php

示例7:

 /**
  * Overridden constructor
  * @access	protected
  */
 function __construct()
 {
     // Call the parent constructor
     parent::__construct();
 }
開發者ID:sangkasi,項目名稱:joomla,代碼行數:9,代碼來源:language.php


注:本文中的InstallerModel::__construct方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。