mako / helpers
A collection of helper functions for the Mako Framework
Installs: 1 517
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
pkg:composer/mako/helpers
Requires
- php: >=7.4.0
Requires (Dev)
- mako/framework: ^8.0.0-dev
- mockery/mockery: ^1.4.4
- phpunit/phpunit: ^9.5.10
README
What is this?
A collection of convenient helper functions meant to be used in your views.
| Function | Description |
|---|---|
| app() | Returns the application instance |
| config() | Returns the mako\config\Config instance |
| container() | Returns the mako\syringe\Container instance |
| cookie($name, $default = null) | Returns the cookie value or null if the cookie doesn't exist |
| flash($key, $default = null) | Returns a flash value from the session |
| gatekeeper($adapterName = null) | Returns a gatekeeper adapter instance |
| humanizer() | Returns the mako\utility\Humanizer instance |
| i18n() | Returns the mako\i18n\I18n instance |
| one_time_token() | Returns a random security token |
| pusher() | Returns the mako\pusher\Pusher instance |
| request() | Returns the mako\http\Request instance |
| session() | Returns the mako\session\Session instance |
| signed_cookie($name, $default = null) | Returns the cookie value or null if the cookie doesn't exist |
| token() | Returns the session token |
| url() | Returns the mako\http\routing\URLBuilder instance |
| user($adapterName = null) | Returns the active user or null if there isn't one |
The
pusherfunction will only work if you have installed themako/pusherpackage and it also requires you to use the included middleware.
Requirements
Mako 8.0 or greater.
Installation
composer require mako/helpers