summaryrefslogtreecommitdiffstats
path: root/application/forms/AuthDelete.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/forms/AuthDelete.php')
-rw-r--r--application/forms/AuthDelete.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/application/forms/AuthDelete.php b/application/forms/AuthDelete.php
deleted file mode 100644
index 4e9c92d..0000000
--- a/application/forms/AuthDelete.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?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',
- ));
- }
-
-
-}
-