<?php
class Banner_Form_Admin_Settings extends Zend_Form {

	public function init() {

		$this->setAttrib('id', 'settings_form');
		$this->setAttrib('class', 'no-ajax');
		$this->setAction('admin_index/ajax-settings');

		$this->addElement('Hidden', 'timeout', array('required' => true,
			'id' => 'amount',
			'validators' => array(new Zend_Validate_Int()))
		);
		$this->getElement('timeout')->removeDecorator('Label');

//		$this->addElement('Hidden', 'form', array('value' => 'settings'));
//		$this->getElement('form')->clearDecorators()
//			->addDecorators(array('ViewHelper'));

		$this->addElement('Button', 'execute', array(
			'class' => 'button',
			'type' => 'submit',
			'label' => 'Zapisz',
			'decorators' => array('ViewHelper')
		));
	}

}
