Class for database settings page Displays a form where the user can enter the installation settings regarding the databases - login and password, names, prefixes, single or multiple databases, tracking or not...
Updates the attributes in $attr1 with the values in $attr2 without changing the other existing attributes
Class Details
[line 35]
The class represents a page of a multipage form.
Generally you'll need to subclass this and define your buildForm() method that will build the form. While it is also possible to instantiate this class and build the form manually, this is not the recommended way.
You should override this method when you subclass HTML_QuickForm_Page, it should contain all the necessary addElement(), applyFilter(), addRule() and possibly setDefaults() and setConstants() calls. The method will be called on demand, so please be sure to set $_formBuilt property to true to assure that the method works only once.
Sets the default action invoked on page-form submit
This is necessary as the user may just press Enter instead of clicking one of the named submit buttons and then no action name will be passed to the script.