addElement('text', 'title', array( 'label' => 'Title:', 'required' => true, 'filters' => array('StringTrim'), 'validators' => array( 'NotEmpty', ) )); // Add the comment element $this->addElement('textarea', 'description', array( 'label' => 'Description:', 'required' => false, )); } }