summaryrefslogtreecommitdiffstats
path: root/application/forms/NewPassword.php
diff options
context:
space:
mode:
authorBjörn Geiger2011-08-04 16:32:41 +0200
committerBjörn Geiger2011-08-04 16:32:41 +0200
commit0d4a3b029637e546b17028f2974d919c92f1fd79 (patch)
treed3f9e194c91224c73cfaec414a5ed9733cbefacb /application/forms/NewPassword.php
parentPassword Reovery hinzugefügt (diff)
downloadpoolctrl-0d4a3b029637e546b17028f2974d919c92f1fd79.tar.gz
poolctrl-0d4a3b029637e546b17028f2974d919c92f1fd79.tar.xz
poolctrl-0d4a3b029637e546b17028f2974d919c92f1fd79.zip
Group und Person nicht mehr in der lokalen Datenbank
Diffstat (limited to 'application/forms/NewPassword.php')
-rw-r--r--application/forms/NewPassword.php48
1 files changed, 0 insertions, 48 deletions
diff --git a/application/forms/NewPassword.php b/application/forms/NewPassword.php
deleted file mode 100644
index d3ca34b..0000000
--- a/application/forms/NewPassword.php
+++ /dev/null
@@ -1,48 +0,0 @@
-<?php
-/*
- * Copyright (c) 2011 - OpenSLX GmbH, RZ Uni Freiburg
- * This program is free software distributed under the GPL version 2.
- * See http://gpl.openslx.org/
- *
- * If you have any feedback please consult http://feedback.openslx.org/ and
- * send your suggestions, praise, or complaints to feedback@openslx.org
- *
- * General information about OpenSLX can be found at http://openslx.org/
- */
-
-class Application_Form_NewPassword extends Zend_Form
-{
- private $personID;
-
- public function setPersonID($personID){
- $this->personID = $personID;
- }
-
- public function init()
- {
- $this->setName("NewPassword");
- $this->setMethod('post');
-
- $this->addElement('hidden', 'personID', array(
- 'value' => $this->personID
- ));
-
- $this->addElement('password', 'password', array(
- 'filters' => array('StringTrim'),
- 'validators' => array(
- array('StringLength', false, array(0, 50)),
- ),
- 'required' => true,
- 'label' => 'Password:',
- ));
-
- $this->addElement('submit', 'savePassword', array(
- 'required' => false,
- 'ignore' => true,
- 'label' => 'Save',
- ));
- }
-
-
-}
-