50 lines
1.6 KiB
PHP
Executable File
50 lines
1.6 KiB
PHP
Executable File
<?php
|
|
|
|
class LoginForm extends Zend_Form
|
|
{
|
|
public function __construct($options = null)
|
|
{
|
|
parent::__construct($options);
|
|
$this->setName('login');
|
|
|
|
$username = new Zend_Form_Element_Text('username');
|
|
$username->setLabel('Username')
|
|
->setRequired(true)
|
|
->addFilter('StripTags')
|
|
->addFilter('StringTrim')
|
|
->addValidator('NotEmpty');
|
|
|
|
$password=new Zend_Form_Element_Password('password');
|
|
$password->setLabel('Password')->setRequired(true);
|
|
|
|
$remember=new Zend_Form_Element_Checkbox('remember');
|
|
$remember->setLabel('Remember me');
|
|
$id = new Zend_Form_Element_Hidden('id');
|
|
|
|
$submit = new Zend_Form_Element_Submit('submit');
|
|
$submit->setLabel('Login');
|
|
$submit->setAttrib('id', 'submitbutton');
|
|
|
|
$this->addElements(array($id, $username, $password, $remember, $submit));
|
|
$this->clearDecorators();
|
|
$this->addDecorator('FormElements')
|
|
->addDecorator('HtmlTag', array('tag' => '<ul>','class'=>'loginform'))
|
|
->addDecorator('Form');
|
|
|
|
$this->setElementDecorators(array(
|
|
array('ViewHelper'),
|
|
array('Errors'),
|
|
array('Description'),
|
|
array('Label', array('separator'=>' ')),
|
|
array('HtmlTag', array('tag' => 'li', 'class'=>'element-group')),
|
|
));
|
|
|
|
// buttons do not need labels
|
|
$submit->setDecorators(array(
|
|
array('ViewHelper'),
|
|
array('Description'),
|
|
array('HtmlTag', array('tag' => 'li', 'class'=>'submit-group')),
|
|
));
|
|
|
|
}
|
|
} |