Return
Class reference: RisolutoHooks class (risoluto_hooks.php)
Abstraction of the class
This is a base class of RisolutoCore class (risoluto_core.php). Normally it is not needed to use but under special condition such as to change behavior of contoller. Methods in this class is called at start and end in each controller processing.
How to generage class instance
- This class does not consider any usage than generating instance by htdocs/index.php. It is possible to generate insgtances by other classes though there is no merit to do so.
What this class depends on
Contents of the class
Class valiable
Class method
hook_first()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed at first |
hook_beforeInitController()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed before formatting controller |
hook_afterInitController()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed after formatting controller |
hook_beforeStartSession()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed before starting session |
hook_afterStartSession()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed before starting session |
hook_beforeLoadClass()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed before loading class instance |
hook_afterLoadClass()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed after loading class instance |
hook_beforeExecuteClass()
| Scope | public |
| Parameter | None |
| Return value | none |
| Type of return value | void |
| Usage | executed before executing class instance |
hook_afterExecuteClass()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed after executing class instance |
hook_beforeCleanController()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed before controller cleaning |
hook_afterCleanController()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed after controller cleaning |
hook_end()
| Scope | public |
| Parameter | none |
| Return value | none |
| Type of return value | void |
| Usage | executed after controller cleaning |
Return