Class AppKernel
Front logic. Dispatches and manages the input flow thread.
Contains many of all the $hooks present in the framework.
Namespace: Kernel
Package: Kernel
Hooks:
Located at app/Kernel/AppKernel.php
Package: Kernel
Hooks:
('After_Hooks_Setup', $hooks) // called right after the constructor ('exec_beforestart', ['controller' => $controllerName, 'action' => $action]) // just after Router::matchRoute ('permission_unallowed', [ 'permission' => $permission, 'controller' => $controllerName, 'action' => $action]) // when it's an unauthorized request ('general_exception', ['e' => $e]) // when/if \Exception is thrown ('exec_afterend', ['controller' => $controllerName, 'action' => $action]) // When execution has finished
Located at app/Kernel/AppKernel.php
public static
|