tasmaniski / zend-params-helper
View Helper for reading data from $_GET, $_POST and Routes in view
Installs: 5 108
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 5
Forks: 1
Open Issues: 1
Requires
- php: >=5.6
- laminas/laminas-dependency-plugin: ^1.0
- laminas/laminas-mvc: ^3.0
This package is auto-updated.
Last update: 2020-11-09 11:00:22 UTC
README
IMPORTANT NOTE: If you find this package useful, please click on a star button and let me know, so I will gladly continue with the updates.
Laminas MVC Params Helper
View Helper will read params from $_GET, $_POST and Routes in Laminas MVC project.
Install
Add in you composer.json file:
{ "require": { "tasmaniski/laminas-params-helper": "^3.0" } }
After running: composer update
You need to register new module. Add in file config/application.config.php:
'modules' => array(
'...',
'ParamsHelper'
),
Use
We can use it in any view file (including layout) as key name params(). View Helper params() served to read variables from $_POST, $_GET or from Routes.
//will read all variables from $_POST $this->params()->fromPost(); //will read all variables from Routes $this->params()->fromRoute(); //will read all variables from $_GET $this->params()->fromQuery();
Or you can get one variable by name. Second param is optional and it's default value if helper can not find the key.
//will read var with name 'id' and if id is null it will return 1 as default $this->params()->fromRoute('id', 1);