@@ -181,7 +181,7 @@ |
||
| 181 | 181 | // TODO: explain differences when using FormInput::SET_JSON_DATA |
| 182 | 182 | if (($this->wFlags & self::SET_JSON_DATA) != 0) { |
| 183 | 183 | $strJsonData = $this->oFG->oData->getValue($this->strName); |
| 184 | - if (strlen($strJsonData) > 0 ) { |
|
| 184 | + if (strlen($strJsonData) > 0) { |
|
| 185 | 185 | $strScript .= PHP_EOL; |
| 186 | 186 | $strScript .= ' editor.setData(' . json_encode($strJsonData, JSON_PRETTY_PRINT) . ');' . PHP_EOL; |
| 187 | 187 | } |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | */ |
| 45 | 45 | public function getHTML() : string |
| 46 | 46 | { |
| 47 | - $strHTML = $this->buildContainerDiv(); |
|
| 47 | + $strHTML = $this->buildContainerDiv(); |
|
| 48 | 48 | |
| 49 | 49 | $this->strID = $this->strID ?: $this->strName; |
| 50 | 50 | |
@@ -16,8 +16,8 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | public function __construct(array $aData, array $aSelectOptions = []) |
| 18 | 18 | { |
| 19 | - $this->aValues = $aData; |
|
| 20 | - $this->aSelectOptions = $aSelectOptions; |
|
| 19 | + $this->aValues = $aData; |
|
| 20 | + $this->aSelectOptions = $aSelectOptions; |
|
| 21 | 21 | } |
| 22 | 22 | } |
| 23 | 23 | |
@@ -134,7 +134,7 @@ |
||
| 134 | 134 | public function getHTML() : string |
| 135 | 135 | { |
| 136 | 136 | $this->setSize(); |
| 137 | - $strHTML = $this->buildContainerDiv(); |
|
| 137 | + $strHTML = $this->buildContainerDiv(); |
|
| 138 | 138 | |
| 139 | 139 | $this->strID = $this->strID ?: $this->strName; |
| 140 | 140 | |