addElement('text', 'name', array('label' => 'Name', 'required' => true)); $this->addElement( 'select', 'categoryId', array( 'label' => 'Category', 'escapeLabel' => false, 'required' => true, 'multiOptions' => array('' => 'Select One') + App_Cms_Obj::getInstance()->getSponsorCategory4Select() ) ); $this->addElement( 'extendedImage', 'image', array( 'label' => 'Logo', 'required' => true, 'resize' => $config->image->width . 'x' . $config->image->height . $config->image->resizeMethodAlias, ) ); $this->addElement( 'text', 'url', array( 'label' => 'Sponsor\'s Website URL', 'class' => 'text', 'filters' => array('StringTrim'), 'validators' => array('Url'), 'description' => 'Example: http://www.adaptainc.com' ) ); return $this; } }