summaryrefslogtreecommitdiffstats
path: root/application/modules/user/forms/Config.php
diff options
context:
space:
mode:
authormichael pereira2011-04-04 03:47:22 +0200
committermichael pereira2011-04-04 03:47:22 +0200
commitd26f46ed221f9e833e558747033657e8a58abdbc (patch)
treecf7dc4e3e0b601938b4dc937f7dd9c281ba6336d /application/modules/user/forms/Config.php
parentBootmenu im User Controller fertig (diff)
downloadpbs2-d26f46ed221f9e833e558747033657e8a58abdbc.tar.gz
pbs2-d26f46ed221f9e833e558747033657e8a58abdbc.tar.xz
pbs2-d26f46ed221f9e833e558747033657e8a58abdbc.zip
Config in User fertig mit pagination
Diffstat (limited to 'application/modules/user/forms/Config.php')
-rw-r--r--application/modules/user/forms/Config.php71
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.'"'
+ ));
+
+ }
+
+}
+?>
+