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




                                          
                      
                        
        





                                             
                                                

     


                                       



                                       




                                         
                                                                                     
























                                                                           
                                                                                                         






             
<?php

class user_Form_Bootmenu extends Zend_Form
{
	private $action;
	private $page;
	private $type;	
	
    public function setAction($action){
    	$this->action = $action;
    	
    }
	
    public function setGrouplist($grouplist){
    	$this->grouplist = $grouplist;    	
    }
    
	public function setPage($page){
		$this->page = $page;
	}
	public function setType($type){
		$this->type = $type;
	}
	
    public function init()
    {
        $this->setName($this->action);
		$this->setMethod('post');
		
		if (!Pbs_Acl::checkRight('booee') && $this->action == 'editbootmenu')
			$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/type/'.$this->type.'/page/'.$this->page.'"'
        ));  

    }


}