summaryrefslogtreecommitdiffstats
path: root/application/modules/dev/forms/BootmenuEntriesEdit.php
diff options
context:
space:
mode:
authorSebastian Schmelzer2012-01-11 14:36:35 +0100
committerSebastian Schmelzer2012-01-11 14:36:35 +0100
commitfca04a6dab252eb9e8c0a92ce3b7e14b32e68d1e (patch)
tree6e6aaf749f34db8c7c7153c23ef85c57187430bb /application/modules/dev/forms/BootmenuEntriesEdit.php
parentAPI: mit addBootos kann man nun auch editieren (diff)
downloadpbs2-fca04a6dab252eb9e8c0a92ce3b7e14b32e68d1e.tar.gz
pbs2-fca04a6dab252eb9e8c0a92ce3b7e14b32e68d1e.tar.xz
pbs2-fca04a6dab252eb9e8c0a92ce3b7e14b32e68d1e.zip
format source files
Diffstat (limited to 'application/modules/dev/forms/BootmenuEntriesEdit.php')
-rw-r--r--application/modules/dev/forms/BootmenuEntriesEdit.php276
1 files changed, 137 insertions, 139 deletions
diff --git a/application/modules/dev/forms/BootmenuEntriesEdit.php b/application/modules/dev/forms/BootmenuEntriesEdit.php
index 87fcb9e..096d0f4 100644
--- a/application/modules/dev/forms/BootmenuEntriesEdit.php
+++ b/application/modules/dev/forms/BootmenuEntriesEdit.php
@@ -1,150 +1,148 @@
-<?php
+<? 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 dev_Form_BootmenuEntriesEdit extends Zend_Form
-{
-
- private $bootoslist;
- private $configlist;
- private $maxorder;
- private $kcl;
-
- public function setBootoslist($bootoslist){
- $this->bootoslist = $bootoslist;
+* 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 dev_Form_BootmenuEntriesEdit extends Zend_Form {
+
+ private $bootoslist;
+ private $configlist;
+ private $maxorder;
+ private $kcl;
+
+ public function setBootoslist($bootoslist) {
+ $this->bootoslist = $bootoslist;
+ }
+
+ public function setMaxorder($maxorder) {
+ $this->maxorder = $maxorder;
+ }
+
+ public function setConfiglist($configlist) {
+ $this->configlist = $configlist;
+ }
+ public function setKcl($kcl) {
+ $this->kcl = $kcl;
+ }
+
+
+ public function init() {
+
+ if(!isset($_POST['bootosID'])) {
+ $firstbootos = array_slice($this->bootoslist, 0, 1);
+ $_POST['bootosID'] = $firstbootos[0]->getID();
+ if(isset($this->kcl))
+ { $_POST['kclactive'] = true; }
+ else
+ { $_POST['kclactive'] = false; }
}
-
- public function setMaxorder($maxorder){
- $this->maxorder = $maxorder;
+
+ $this->setName("BootMenuEntryAdd");
+ $this->setMethod('post');
+
+ $this->addElement('text', 'title', array(
+ 'filters' => array('StringTrim'),
+ 'validators' => array(
+ array('StringLength', false, array(0, 50)),
+ ),
+ 'required' => true,
+ 'label' => 'Title:',
+ ));
+
+ $bootosfield = $this->createElement('select', 'bootosID');
+ $bootosfield->setLabel('BootOs:');
+ $bootosfield->setAttrib('onChange', "document.getElementById('BootMenuEntryAdd').submit();");
+
+
+ if(count($this->bootoslist) > 0) {
+ foreach($this->bootoslist as $bootos => $b) {
+ $bootosfield->addMultiOption($b->getID(), $b->getTitle());
+ }
}
-
- public function setConfiglist($configlist){
- $this->configlist = $configlist;
+ $bootosfield->setRegisterInArrayValidator(false);
+ $this->addElement($bootosfield);
+
+ $kclactive = $this->createElement('checkbox', 'kclactive');
+ $kclactive->setAttrib('onChange', "document.getElementById('BootMenuEntryAdd').submit();");
+ $kclactive->setLabel('Use default KCL:');
+ $kclactive->setValue($_POST['kclactive']);
+ $this->addElement($kclactive);
+
+ if($_POST['kclactive']) {
+ $this->addElement('textarea', 'kcl', array(
+ 'filters' => array('StringTrim'),
+ 'validators' => array(
+ array('StringLength', false, array(0, 50)),
+ ),
+ 'required' => false,
+ 'cols' => 50,
+ 'rows' => 5,
+ 'label' => 'KCL:',
+ 'readOnly' => true,
+ 'value' => $this->bootoslist[$_POST['bootosID']]->getDefaultkcl()
+ ));
}
- public function setKcl($kcl){
- $this->kcl = $kcl;
+
+ if($_POST['kclactive'])
+ { $kcllength = 175 - strlen($this->bootoslist[$_POST['bootosID']]->getDefaultkcl()); }
+ else
+ { $kcllength = 175; }
+
+ $this->addElement('textarea', 'kclappend', array(
+ 'filters' => array('StringTrim'),
+ 'validators' => array(
+ array('StringLength', false, array(0, $kcllength)),
+ ),
+ 'required' => false,
+ 'cols' => 50,
+ 'rows' => 5,
+ 'label' => 'KCL-Append:',
+ 'description' => 'Chars left: ' . $kcllength
+
+ ));
+
+ $defaultconfigid = $this->bootoslist[$_POST['bootosID']]->getConfigID();
+ $configfield = $this->createElement('select', 'configID');
+ $configfield->setLabel('Config:');
+ $configfield->addMultiOption($defaultconfigid, 'default');
+
+ if(count($this->configlist) > 0) {
+ foreach($this->configlist as $config => $c) {
+ if($c->getID() != $defaultconfigid)
+ { $configfield->addMultiOption($c->getID(), $c->getTitle()); }
+ }
}
-
-
- public function init()
- {
-
- if(!isset($_POST['bootosID'])){
- $firstbootos = array_slice($this->bootoslist,0,1);
- $_POST['bootosID'] = $firstbootos[0]->getID();
- if(isset($this->kcl))
- $_POST['kclactive'] = true;
- else
- $_POST['kclactive'] = false;
- }
-
- $this->setName("BootMenuEntryAdd");
- $this->setMethod('post');
-
- $this->addElement('text', 'title', array(
- 'filters' => array('StringTrim'),
- 'validators' => array(
- array('StringLength', false, array(0, 50)),
- ),
- 'required' => true,
- 'label' => 'Title:',
- ));
-
- $bootosfield = $this->createElement('select','bootosID');
- $bootosfield->setLabel('BootOs:');
- $bootosfield->setAttrib('onChange', "document.getElementById('BootMenuEntryAdd').submit();");
-
-
- if(count($this->bootoslist)>0){
- foreach($this->bootoslist as $bootos => $b){
- $bootosfield->addMultiOption($b->getID(), $b->getTitle());
- }
- }
- $bootosfield->setRegisterInArrayValidator(false);
- $this->addElement($bootosfield);
-
- $kclactive = $this->createElement('checkbox','kclactive');
- $kclactive->setAttrib('onChange', "document.getElementById('BootMenuEntryAdd').submit();");
- $kclactive->setLabel('Use default KCL:');
- $kclactive->setValue($_POST['kclactive']);
- $this->addElement($kclactive);
-
- if($_POST['kclactive']){
- $this->addElement('textarea', 'kcl', array(
- 'filters' => array('StringTrim'),
- 'validators' => array(
- array('StringLength', false, array(0, 50)),
- ),
- 'required' => false,
- 'cols' => 50,
- 'rows' => 5,
- 'label' => 'KCL:',
- 'readOnly' => true,
- 'value' => $this->bootoslist[$_POST['bootosID']]->getDefaultkcl()
- ));
- }
-
- if($_POST['kclactive'])
- $kcllength = 175 - strlen($this->bootoslist[$_POST['bootosID']]->getDefaultkcl());
- else
- $kcllength = 175;
-
- $this->addElement('textarea', 'kclappend', array(
- 'filters' => array('StringTrim'),
- 'validators' => array(
- array('StringLength', false, array(0, $kcllength)),
- ),
- 'required' => false,
- 'cols' => 50,
- 'rows' => 5,
- 'label' => 'KCL-Append:',
- 'description' => 'Chars left: ' . $kcllength
-
- ));
-
- $defaultconfigid = $this->bootoslist[$_POST['bootosID']]->getConfigID();
- $configfield = $this->createElement('select','configID');
- $configfield->setLabel('Config:');
- $configfield->addMultiOption($defaultconfigid, 'default');
-
- if(count($this->configlist)>0){
- foreach($this->configlist as $config => $c){
- if($c->getID() != $defaultconfigid)
- $configfield->addMultiOption($c->getID(), $c->getTitle());
- }
- }
- $configfield->setRegisterInArrayValidator(false);
- $this->addElement($configfield);
-
- $orderfield = $this->createElement('select','order');
- $orderfield ->setLabel('Position:');
-
- for ($i = 0; $i < $this->maxorder; $i++) {
- $orderfield->addMultiOption($i, $i+1);
- }
- $orderfield->setRegisterInArrayValidator(false);
- $this->addElement($orderfield);
-
- $this->addElement('submit', 'editbootmenuentry', array(
- 'required' => false,
- 'ignore' => true,
- 'label' => 'Edit Bootmenuentry',
- ));
-
- $this->addElement('button', 'Cancel', array(
- 'onclick' => 'self.location="/dev/bootmenu"'
- ));
+ $configfield->setRegisterInArrayValidator(false);
+ $this->addElement($configfield);
+
+ $orderfield = $this->createElement('select', 'order');
+ $orderfield ->setLabel('Position:');
+ for ($i = 0; $i < $this->maxorder; $i++) {
+ $orderfield->addMultiOption($i, $i + 1);
}
-
+ $orderfield->setRegisterInArrayValidator(false);
+ $this->addElement($orderfield);
+
+ $this->addElement('submit', 'editbootmenuentry', array(
+ 'required' => false,
+ 'ignore' => true,
+ 'label' => 'Edit Bootmenuentry',
+ ));
+
+ $this->addElement('button', 'Cancel', array(
+ 'onclick' => 'self.location="/dev/bootmenu"'
+ ));
+
+ }
+
}