diff options
Diffstat (limited to 'application/modules/dev/forms/AuthDelete.php')
| -rw-r--r-- | application/modules/dev/forms/AuthDelete.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/application/modules/dev/forms/AuthDelete.php b/application/modules/dev/forms/AuthDelete.php new file mode 100644 index 0000000..4e9c92d --- /dev/null +++ b/application/modules/dev/forms/AuthDelete.php @@ -0,0 +1,28 @@ +<?php + +class Application_Form_AuthDelete extends Zend_Form +{ + + public function init() + { + $this->setName("Delete"); + $this->setMethod('post'); + + $this->addElement('text', 'ID', array( + 'filters' => array('StringTrim'), + 'validators' => array( + array('StringLength', false, array(0, 50)), + ), + 'required' => true, + 'label' => 'ID:', + )); + $this->addElement('submit', 'delete', array( + 'required' => false, + 'ignore' => true, + 'label' => 'Delete', + )); + } + + +} + |
