View Single Post
  #3 (permalink)  
Old 05-08-2008, 10:41 AM
BlaCK ErrOR BlaCK ErrOR is offline
Junior Member
 
Join Date: Mar 2008
Posts: 7
Default

PHP Code:
$form = new Custom_forms_AddMenuItem(); 
PHP Code:
class Custom_forms_AddMenuItem extends Zend_Form {
    
public function 
__construct()  { 

// input box
  
$add = new Zend_Form_Element_Submit('add');
$add ->setLabel('Save item')
       ->
setValue('Add');
             
$addOther = new Zend_Form_Element_Submit('addOther');
$addOther ->setLabel('Save and add other item')
           ->
setValue('Add other');

$this->addElements(array($name$parent$contAction$linkVar$menuPerm$add$addOther));

// decorators
}


Reply With Quote