diff options
| author | michael pereira | 2011-03-08 14:54:34 +0100 |
|---|---|---|
| committer | michael pereira | 2011-03-08 14:54:34 +0100 |
| commit | 2d7595cc8b8078acce88888c6800f85f927c7c2d (patch) | |
| tree | 97b74c4134c0e480a4d4ca34dbdbc0083f54d5a3 /application/forms/Client.php | |
| parent | pbs.sql aktualisiert (diff) | |
| parent | application.ini entfernt (diff) | |
| download | pbs2-2d7595cc8b8078acce88888c6800f85f927c7c2d.tar.gz pbs2-2d7595cc8b8078acce88888c6800f85f927c7c2d.tar.xz pbs2-2d7595cc8b8078acce88888c6800f85f927c7c2d.zip | |
Merge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2
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', + )); + } + + +} + |
