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


PHP ComponentCollection::normalizeObjectArray方法代碼示例

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


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

示例1: __construct

/**
 * Constructor
 *
 * @param ComponentCollection $collection A ComponentCollection this component can use to lazy load its components
 * @param array $settings Array of configuration settings.
 */
	public function __construct(ComponentCollection $collection, $settings = array()) {
		$this->_Collection = $collection;
		$this->settings = $settings;
		$this->_set($settings);
		if (!empty($this->components)) {
			$this->_componentMap = ComponentCollection::normalizeObjectArray($this->components);
		}
	}
開發者ID:sherix88,項目名稱:sigedu,代碼行數:14,代碼來源:Component.php

示例2: init

/**
 * Initializes all the Components for a controller.
 * Attaches a reference of each component to the Controller.
 *
 * @param Controller $Controller Controller to initialize components for.
 * @return void
 */
	public function init(Controller $Controller) {
		if (empty($Controller->components)) {
			return;
		}
		$this->_Controller = $Controller;
		$components = ComponentCollection::normalizeObjectArray($Controller->components);
		foreach ($components as $name => $properties) {
			$Controller->{$name} = $this->load($properties['class'], $properties['settings']);
		}
	}
開發者ID:hungnt88,項目名稱:5stars-1,代碼行數:17,代碼來源:ComponentCollection.php

示例3: loadComponent

 /**
  * Loads a Component
  *
  * @param string $componentClass Name of model class to load
  * @param array $settings array of settings
  * @return void
  * @access public
  **/
 public function loadComponent($componentClass, $settings = array())
 {
     if (empty($this->_internals['controller'])) {
         $this->loadController();
     }
     $components = ComponentCollection::normalizeObjectArray(array($componentClass => $settings));
     foreach ($components as $name => $properties) {
         $this->_internals['controller']->{$name} = $this->_internals['controller']->Components->load($properties['class'], $properties['settings']);
         $this->{$name} = $this->_internals['controller']->{$name};
     }
     if (method_exists($this->_internals['controller']->{$name}, 'initialize')) {
         $this->_internals['controller']->{$name}->initialize($this->_internals['controller']);
     }
     if (method_exists($this->_internals['controller']->{$name}, 'startup')) {
         $this->_internals['controller']->{$name}->startup($this->_internals['controller']);
     }
 }
開發者ID:josegonzalez,項目名稱:cakephp-cake-djjob,代碼行數:25,代碼來源:CakeJob.php


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