Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Codeblock
languagephp
titleZugriff mit neuer Controller-Instanz
collapsetrue
public function abc() { 
  $this->newAppController(foreign\engine::class)->something();
}

...

Codeblock
languagephp
titleZugriff auf erstes Feature über Hook-Systemcollapsetrue
public function abc() { 
  $result = $this
    ->main(foreign\engine::class)
    ->first()
    ->sendResponse()
    ->validateCsrf()
    ->validateRights()
    ->getResult($params, [])
  ;
}

...

Codeblock
languagephp
titleZugriff auf alle Features über Hook-Systemcollapsetrue
public function abc() { 
  $result = $this
    ->main(foreign\engine::class)
    ->collectAll()
    ->sendResponse()
    ->validateCsrf()
    ->validateRights()
    ->getResult($params, [])
  ;
}

...

Codeblock
languagephp
titleErstellen eines Hookscollapsetrue
public function abc() { 
  $result = $this
    ->makeHookable(foreign\engine::class)
    ->something()
  ;
}

...