<?php

/**
 * Generated: 2014-03-24 15:01:35
 * @author Rtn_Module_Tool
 */
class Banner_Form_Admin_Advertisement extends Eppe_Form {

	public function init() {
		$this->setAttrib('class', 'no-ajax');
		$view = new Zend_View();

		$e = new Zend_Form_Element_Text('name', [
		    'required' => true,
		    'label' => __('Nazwa')
		]);
		$this->addElement($e);

		$e = new Zend_Form_Element_Text('link', [
		    'label' => __('Link (np. http://oil.szczecin.pl)')
		]);
		$this->addElement($e);

		$e = new Eppe_Form_Element_DateTime('dtexpiry', [
		    'label' => __('Data wygaśnięcia')
		]);
		$this->addElement($e);

		$this->addElement('File', 'slide', array(
		    'label' => __('Zdjęcie'),
		    'id' => 'upload',
		    'description' => $view->translate("Formaty .jpg, .gif, .png. Szerokość nie mniejsza niż %1\$s px.", 306),
		    'validators' => array(
			new Zend_Validate_File_Extension(array('extension' => 'jpg,jpeg,gif,png')),
			new Zend_Validate_File_Count(array('max' => 1)),
			new Zend_Validate_File_ImageSize(array('minwidth' => '306'))
		    )
		));

		$this->addStandardButtons();
	}

}
