diff options
Diffstat (limited to 'application/forms/Client.php')
| -rw-r--r-- | application/forms/Client.php | 37 |
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', + )); + } + + +} + |
