diff options
Diffstat (limited to 'application/modules/user/forms/Config.php')
| -rw-r--r-- | application/modules/user/forms/Config.php | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/application/modules/user/forms/Config.php b/application/modules/user/forms/Config.php new file mode 100644 index 0000000..bf25fe2 --- /dev/null +++ b/application/modules/user/forms/Config.php @@ -0,0 +1,71 @@ +<?php + +class user_Form_Config extends Zend_Form +{ + + private $action; + private $rights; + private $page; + + public function setRights($rights){ + $this->rights = $rights; + } + public function setAction($action){ + $this->action = $action; + } + public function setPage($p){ + $this->page = $p; + } + + public function init() + { + $this->setName($this->action); + $this->setMethod('post'); + + if ($this->rights == 'meta') + $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:', + )); + + + $this->addElement('textarea', 'shellscript', array( + 'filters' => array('StringTrim'), + 'validators' => array( + array('StringLength', false, array(0, 50)), + ), + 'required' => true, + 'rows' => 10, + 'cols' => 70, + 'readOnly' => $meta, + 'label' => 'Shellscript:', + )); + + if($this->action == "createconfig") + $label = "Create Config"; + else + $label = "Edit Config"; + + $this->addElement('submit', $this->action, array( + 'required' => false, + 'ignore' => true, + 'label' => $label + )); + + $this->addElement('button', 'Cancel', array( + 'onclick' => 'self.location="/user/config/index/page/'.$this->page.'"' + )); + + } + +} +?> + |
