@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | $this->setConf( |
70 | 70 | unserialize( |
71 | 71 | $GLOBALS['TYPO3_CONF_VARS']['EXT']['extConf'][$this->extKey], |
72 | - [ 'allowed_classes' => false ] |
|
72 | + ['allowed_classes' => false] |
|
73 | 73 | ) |
74 | 74 | ); |
75 | 75 | } |
@@ -173,8 +173,8 @@ discard block |
||
173 | 173 | $siteName = $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']; |
174 | 174 | |
175 | 175 | return str_replace( |
176 | - [ '###sitename###', '###context###' ], |
|
177 | - [ $siteName, $this->contextName ], |
|
176 | + ['###sitename###', '###context###'], |
|
177 | + [$siteName, $this->contextName], |
|
178 | 178 | $this->conf['bannerTemplate'] |
179 | 179 | ); |
180 | 180 | } |
@@ -193,8 +193,8 @@ discard block |
||
193 | 193 | $siteName = $GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']; |
194 | 194 | |
195 | 195 | return str_replace( |
196 | - [ '###sitename###', '###context###' ], |
|
197 | - [ $siteName, $this->getShortContextName() ], |
|
196 | + ['###sitename###', '###context###'], |
|
197 | + [$siteName, $this->getShortContextName()], |
|
198 | 198 | $this->conf['pageTitleTemplate'] |
199 | 199 | ); |
200 | 200 | } |
@@ -206,7 +206,7 @@ discard block |
||
206 | 206 | |
207 | 207 | public function renderToolbarItem(): string |
208 | 208 | { |
209 | - $backgroundColor = $this->toolbarIconBackgroundColors[$this->contextName] ?? ''; |
|
209 | + $backgroundColor = $this->toolbarIconBackgroundColors[$this->contextName] ?? ''; |
|
210 | 210 | |
211 | 211 | return '<span style="color: #000000; background-color: ' . $backgroundColor . |
212 | 212 | '" class="toolbar-item-link" title="Application context">' . strtoupper($this->contextName) . '</span>'; |