iaasen/stdlib

A base for REST-API featuring recursive serialization and deserialization of objects

Maintainers

Package info

github.com/iaasen/stdlib

pkg:composer/iaasen/stdlib

Statistics

Installs: 2 418

Dependents: 2

Suggesters: 0

Stars: 1

Open Issues: 0

1.1.10 2026-01-08 13:39 UTC

This package is auto-updated.

Last update: 2026-03-08 13:58:52 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
}