diff options
| author | Simon | 2011-03-11 14:30:37 +0100 |
|---|---|---|
| committer | Simon | 2011-03-11 14:30:37 +0100 |
| commit | 940cbd31de9954d25268af830557f36f2b63b4ef (patch) | |
| tree | 0205c1953dc47201ba156a0ba55202aa310c2a7e /application/forms/Session.php | |
| parent | korrektur (diff) | |
| download | pbs2-940cbd31de9954d25268af830557f36f2b63b4ef.tar.gz pbs2-940cbd31de9954d25268af830557f36f2b63b4ef.tar.xz pbs2-940cbd31de9954d25268af830557f36f2b63b4ef.zip | |
Sessionmapper korrigier, alphasession hinzugefügt, BootMenuEntryID geadded
Diffstat (limited to 'application/forms/Session.php')
| -rw-r--r-- | application/forms/Session.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/application/forms/Session.php b/application/forms/Session.php index 34edd46..d3e0c3f 100644 --- a/application/forms/Session.php +++ b/application/forms/Session.php @@ -12,8 +12,8 @@ class Application_Form_Session extends Zend_Form { $this->setName("session"); $this->setMethod('post'); - - $this->addElement('text', 'aphasessionID', array( + + $this->addElement('text', 'alphasessionID', array( 'filters' => array('StringTrim'), 'validators' => array( array('StringLength', false, array(0, 16)), @@ -33,6 +33,7 @@ class Application_Form_Session extends Zend_Form $clientfield->setRegisterInArrayValidator(false); $this->addElement($clientfield); + $bootmenuentrieyfield = $this->createElement('select','bootmenuentryID'); $bootmenuentrieyfield->setLabel('BootmenuentryID:'); $bootmenuentrieyfield->addMultiOption('',''); @@ -110,6 +111,9 @@ $this->addElement('text', 'ip6', array( function setBootisos($v){ $this->bootisos = $v; } + function setBootmenuentries($v){ + $this->bootmenuentries = $v; + } private $buttontext = 'Save'; function setButtontext($v){ $this->buttontext = $v; |
