summaryrefslogtreecommitdiffstats
path: root/application/forms
diff options
context:
space:
mode:
Diffstat (limited to 'application/forms')
-rw-r--r--application/forms/Session.php8
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;