summaryrefslogblamecommitdiffstats
path: root/application/modules/user/forms/Bootmenu.php
blob: 081904fb21e9924e6f5b89238ce7d7ad28f92b8e (plain) (tree)
1
2
3
4
5
6
7




                                          
                      
        





                                             
                                                

     



                                       




                                         
                                                  
























                                                                           
                                                                                    






             
<?php

class user_Form_Bootmenu extends Zend_Form
{
	private $action;
	private $page;
	
    public function setAction($action){
    	$this->action = $action;
    	
    }
	
    public function setGrouplist($grouplist){
    	$this->grouplist = $grouplist;    	
    }
    
	public function setPage($page){
		$this->page = $page;
	}
    
    public function init()
    {
        $this->setName($this->action);
		$this->setMethod('post');
		
		if (Pbs_Acl::checkRight('booeem'))
			$meta = true;
		else 
			$meta = null;

        $this->addElement('text', 'title', array(
			'filters' => array('StringTrim'),
			'validators' => array(
				array('StringLength', false, array(0, 50)),
			),
			'required' => true,
			'label' => 'Title:',
		));
		
		if($this->action == "createbootmenu")
			$label = "Create Bootmenu";
		else 
			$label = "Edit Bootmenu"; 
		
        $this->addElement('submit', $this->action, array(
            'required' => false,
            'ignore'   => true,
            'label'    => $label,
        ));  
        
        $this->addElement('button', 'Cancel', array(
            'onclick' => 'self.location="/user/bootmenu/index/page/'.$this->page.'"'
        ));  

    }


}