summaryrefslogblamecommitdiffstats
path: root/application/modules/dev/forms/PersonEdit.php
blob: 3baf4a67e2e0a4d15a9db5df73bff25bb07cd67c (plain) (tree)
1
2
3

     
                                           

















































































































                                                                                
<?php

class dev_Form_PersonEdit extends Zend_Form
{

	public function init()
	{
		$this->setName("PersonEdit");
		$this->setMethod('post');
		
		$this->addElement('text', 'title', array(
			'filters' => array('StringTrim'),
			'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
			'required' => true,
			'label' => 'Title:',
			'value' => $this->getView()->person->getTitle(),
		));


		$this->addElement('text', 'name', array(
			'filters' => array('StringTrim'),
			'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
			'required' => true,
			'label' => 'Name:',
			'value' => $this->getView()->person->getName(),
		));

		$this->addElement('text', 'firstname', array(
			'filters' => array('StringTrim'),
			'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
			'required' => true,
			'label' => 'Firstname:',
			'value' => $this->getView()->person->getFirstname(),	
		));

		$this->addElement('text', 'street', array(
			'filters' => array('StringTrim'),
			'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
			'required' => true,
			'label' => 'Street:',
			'value' => $this->getView()->person->getStreet(),
		));

		$this->addElement('text', 'housenumber', array(
			'filters' => array('StringTrim'),
			'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
			'required' => true,
			'label' => 'Housenumber:',
			'value' => $this->getView()->person->getHousenumber(),
		));

		$this->addElement('text', 'city', array(
			'filters' => array('StringTrim'),
			'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
			'required' => true,
			'label' => 'City:',
			'value' => $this->getView()->person->getCity(),
		));

		$this->addElement('text', 'postalcode', array(
			'filters' => array('StringTrim'),
			'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
			'required' => true,
			'label' => 'Postalcode:',
			'value' => $this->getView()->person->getPostalcode(),
		));

		$this->addElement('text', 'email', array(
			'filters' => array('StringTrim', 'StringToLower'),
			'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
			'required' => true,
			'label' => 'Email:',
			'value' => $this->getView()->person->getEmail(),
		));

		$this->addElement('password', 'newpassword', array(
            'filters'    => array('StringTrim'),
            'validators' => array(
		array('StringLength', false, array(0, 50)),
		),
            'required'   => false,
            'label'      => 'Neues Password:',
		));

		$this->addElement('submit', 'save', array(
            'required' => false,
            'ignore'   => true,
            'label'    => 'Save',
		));

		$this->addElement('button', 'cancel', array(
            'required' => false,
            'ignore'   => true,
            'label'    => 'Cancel',
			'onclick'   => 'location.href="/person/show"',
		));
	}


}