iaasen / stdlib
A base for REST-API featuring recursive serialization and deserialization of objects
Installs: 1 846
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^8.2
- ext-intl: *
- ext-json: *
- ext-sysvsem: *
- ext-sysvshm: *
- guzzlehttp/guzzle: ^7
- laminas/laminas-stdlib: ^3
- phpdocumentor/reflection-docblock: ^5
This package is auto-updated.
Last update: 2025-06-26 14:27:18 UTC
README
This function requires the TwbsHelper module to be added. See neilime/twbs-helper-module
Add to the view where the form is used
$this->formCollection()->setElementHelper($this->formRowHorizontal());
$form->prepare();
echo $this->form()->openTag($form);
echo $this->formCollection($form);
echo $this->form()->closeTag();
Replace a view helper in current view
$this->getHelperPluginManager()->setService('formRow', $this->formRowHorizontal());
Format select in bootstrap v3
Add to less-template:
select.form-select {
.form-control
}