You are here

public function Component::__construct in Module Object Oriented Programming API 7.2

Same name and namespace in other branches
  1. 6.2 component/moopapi.component.inc \Component::__construct()
  2. 6 component/moopapi.component.inc \Component::__construct()
  3. 7 component/moopapi.component.inc \Component::__construct()
4 calls to Component::__construct()
Application::__construct in component/moopapi.component.inc
Controller::__construct in component/moopapi.component.inc
Decorator::__construct in component/moopapi.component.inc
Model::__construct in component/moopapi.component.inc
4 methods override Component::__construct()
Application::__construct in component/moopapi.component.inc
Controller::__construct in component/moopapi.component.inc
Decorator::__construct in component/moopapi.component.inc
Model::__construct in component/moopapi.component.inc

File

component/moopapi.component.inc, line 28

Class

Component
@todo Desc for Component.

Code

public function __construct($decorators_applied = array(), &$relations = array()) {
  $this->decorators_applied = $decorators_applied;
  $this->relations =& $relations;
}