summaryrefslogtreecommitdiffstats
path: root/application/forms/Client.php
diff options
context:
space:
mode:
authorSimon2011-03-08 14:03:43 +0100
committerSimon2011-03-08 14:03:43 +0100
commit83fb7e34d99c0006c1c43d58c81ba4e4445f5688 (patch)
tree5bd5b6737312573fc4688899c8c26fb0c394581a /application/forms/Client.php
parentpbs-data um beispeildaten ergänzt (diff)
downloadpbs2-83fb7e34d99c0006c1c43d58c81ba4e4445f5688.tar.gz
pbs2-83fb7e34d99c0006c1c43d58c81ba4e4445f5688.tar.xz
pbs2-83fb7e34d99c0006c1c43d58c81ba4e4445f5688.zip
clients editierbar
Diffstat (limited to 'application/forms/Client.php')
-rw-r--r--application/forms/Client.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/application/forms/Client.php b/application/forms/Client.php
new file mode 100644
index 0000000..1378349
--- /dev/null
+++ b/application/forms/Client.php
@@ -0,0 +1,37 @@
+<?php
+
+class Application_Form_Client extends Zend_Form
+{
+
+ public function init()
+ {
+ $this->setName("pool");
+ $this->setMethod('post');
+
+ $this->addElement('text', 'macadress', array(
+ 'filters' => array('StringTrim'),
+ 'validators' => array(
+ array('StringLength', false, array(0, 50)),
+ ),
+ 'required' => true,
+ 'label' => 'MacAdress:',
+ ));
+ $this->addElement('text', 'hardwarehash', array(
+ 'filters' => array('StringTrim'),
+ 'validators' => array(
+ array('StringLength', false, array(0, 50)),
+ ),
+ 'required' => true,
+ 'label' => 'Hardwarehash:',
+ ));
+
+ $this->addElement('submit', 'add', array(
+ 'required' => false,
+ 'ignore' => true,
+ 'label' => 'Save',
+ ));
+ }
+
+
+}
+