...
Codeblock | ||||
---|---|---|---|---|
| ||||
namespace brandbox\component\example { use brandbox\component\http; class engineEngine extends pluginController\lib\engineAbstractControllerEngineAbstract { /** * @param int $max * @return array */ public function index($max) { return $this ->staticAppController(ui\lib\request\index::class) ->request($max) ; } /** * @param int $max * @return http\respondAbstract */ public function save($max) { return $this ->staticAppController(ui\lib\execute\save::class) ->execute($max) ; } } } |
Der Controller ist die index()
Methode, die in der Controller-Klasse brandbox\component\example\engine
lebt.
...
Codeblock | ||||
---|---|---|---|---|
| ||||
$sessionRequest= session\request::get(); $sessionRequest->setValue('foo', $foo); $foo = $sessionRequest->getString('foo'); |
Weiterlesen unter Sitzungsdaten und Behandlung von Abfragen