forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
14 lines
578 B
Text
14 lines
578 B
Text
The package is essentially an implementation of a PageController pattern.
|
|
|
|
Architecture:
|
|
* Controller class that examines HTTP requests and manages form values
|
|
persistence across requests.
|
|
* Page class (subclass of QuickForm) representing a single page of the form.
|
|
* Business logic is contained in subclasses of Action class.
|
|
|
|
Cool features:
|
|
* Includes several default Actions that allow easy building of multipage forms.
|
|
* Includes usage examples for common usage cases (single-page form, wizard,
|
|
tabbed form).
|
|
|
|
WWW: http://pear.php.net/package/HTML_QuickForm_Controller
|