From d26f46ed221f9e833e558747033657e8a58abdbc Mon Sep 17 00:00:00 2001 From: michael pereira Date: Mon, 4 Apr 2011 03:47:22 +0200 Subject: Config in User fertig mit pagination --- application/modules/user/forms/Config.php | 71 +++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 application/modules/user/forms/Config.php (limited to 'application/modules/user/forms/Config.php') 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 @@ +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.'"' + )); + + } + +} +?> + -- cgit v1.2.3-55-g7522