<?php
/**
 * Description of Cancel
 *
 * @author arson
 */
class Eppe_Form_Element_Cancel extends Zend_Form_Element_Button {

	public function init() {
		parent::init();

		$this->setAttribs(array(
			'type' => 'button', 
			'id' => 'button-cancel', 
			'class' => 'button white',
		));
		$this->setDecorators(array('ViewHelper'));
		
		$this->setValue('cancel');
	}

}
