You are here

public function Application::getControllers in Module Object Oriented Programming API 7

Same name and namespace in other branches
  1. 6.2 component/moopapi.component.inc \Application::getControllers()
  2. 6 component/moopapi.component.inc \Application::getControllers()
  3. 7.2 component/moopapi.component.inc \Application::getControllers()

Overrides IApplication::getControllers

1 call to Application::getControllers()
Application::__construct in component/moopapi.component.inc

File

component/moopapi.component.inc, line 126

Class

Application
@todo Desc for Application.

Code

public function getControllers() {
  if (empty($this->controllers)) {
    foreach ($this->ctrls as $ctrl_name) {
      $this->controllers[$ctrl_name] = $this
        ->getController($ctrl_name);
    }
  }
  return $this->controllers;
}