parent
235c4a8c52
commit
d8b468cf12
application/forms/Config/Authentication
|
@ -30,6 +30,22 @@ abstract class BaseBackendForm extends Form
|
|||
$this->addElement($checkbox);
|
||||
}
|
||||
|
||||
/**
|
||||
* @see Form::addSubmitButton()
|
||||
*/
|
||||
public function addSubmitButton()
|
||||
{
|
||||
$this->addElement(
|
||||
'submit',
|
||||
'btn_submit',
|
||||
array(
|
||||
'label' => t('Save Changes')
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Validate this form with the Zend validation mechanism and perform a logic validation of the connection.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue