Skip to content
Snippets Groups Projects

OP#7651 CI Server: beide AWX ansteuerbar machen https://projects.iml.unibe.ch/work_packages/7651

Merged Hahn Axel (hahn) requested to merge rollout-plugins-with-multiple-config-sets into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -254,7 +254,7 @@ class formgen
@@ -254,7 +254,7 @@ class formgen
$elementData['class'] .= " form-control" . (isset($this->aFeatures['bootstrap-select']) && $this->aFeatures['bootstrap-select'] ? " selectpicker" : "");
$elementData['class'] .= " form-control" . (isset($this->aFeatures['bootstrap-select']) && $this->aFeatures['bootstrap-select'] ? " selectpicker" : "");
$sFormElement .= '<div class="' . $sDivClass . '">' . "\n" . '<select id="' . $sId . '" '
$sFormElement .= '<div class="' . $sDivClass . '">' . "\n" . '<select id="' . $sId . '" '
. $this->_addHtmlAtrributes(explode(",", "$sDefaultAttributes,name,onchange"), $elementData)
. $this->_addHtmlAtrributes(explode(",", "$sDefaultAttributes,name,onchange"), $elementData)
. (isset($this->aFeatures['bootstrap-select']) && $this->aFeatures['bootstrap-select'] ? ' data-live-search="true"' : '');
. (isset($this->aFeatures['bootstrap-select']) && $this->aFeatures['bootstrap-select'] ? ' data-live-search="true" data-size="15"' : '');
$sFormElement .= ">\n";
$sFormElement .= ">\n";
foreach ($elementData["options"] as $idOption => $aOptionData) {
foreach ($elementData["options"] as $idOption => $aOptionData) {
$s = preg_replace('/\W/iu', '', $sId . $idOption);
$s = preg_replace('/\W/iu', '', $sId . $idOption);
Loading