@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | public static function get_base_phrase(string $phrase): string |
| 60 | 60 | { |
| 61 | - if (! in_array($phrase, ['add', 'review', 'edit', 'more'])) { |
|
| 61 | + if (!in_array($phrase, ['add', 'review', 'edit', 'more'])) { |
|
| 62 | 62 | user_error('Phrase must be one of "add", "review", or "edit"', E_USER_ERROR); |
| 63 | 63 | } |
| 64 | 64 | $phrase = Config::inst()->get(static::class, $phrase . '_phrase'); |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | |
| 190 | 190 | usort( |
| 191 | 191 | $shortcuts, |
| 192 | - function ($a, $b) { |
|
| 192 | + function($a, $b) { |
|
| 193 | 193 | $b['SortOrder'] ?? 0; |
| 194 | 194 | $a['SortOrder'] ?? 0; |
| 195 | 195 | } |
@@ -197,11 +197,11 @@ discard block |
||
| 197 | 197 | |
| 198 | 198 | foreach ($shortcuts as $groupCode => $groupDetails) { |
| 199 | 199 | $colour = ''; |
| 200 | - if (! empty($groupDetails['Colour'])) { |
|
| 200 | + if (!empty($groupDetails['Colour'])) { |
|
| 201 | 201 | $colour = 'style="background-color: ' . $groupDetails['Colour'] . '"'; |
| 202 | 202 | } |
| 203 | 203 | $icon = ''; |
| 204 | - if (! empty($groupDetails['IconClass'])) { |
|
| 204 | + if (!empty($groupDetails['IconClass'])) { |
|
| 205 | 205 | $icon = '<i class="' . $groupDetails['IconClass'] . '"></i> '; |
| 206 | 206 | } |
| 207 | 207 | $html .= ' |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | <div class="entries">'; |
| 213 | 213 | $items = $groupDetails['Items'] ?? []; |
| 214 | 214 | foreach ($items as $pos => $entry) { |
| 215 | - if (! empty($entry['Link']) && class_exists($entry['Link'])) { |
|
| 215 | + if (!empty($entry['Link']) && class_exists($entry['Link'])) { |
|
| 216 | 216 | $obj = Injector::inst()->get($entry['Link']); |
| 217 | 217 | if ($obj instanceof DataObject) { |
| 218 | 218 | $entry['Link'] = DataObject::get_one($entry['Link'])->CMSEditLink(); |
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | return $array; |
| 276 | 276 | } |
| 277 | 277 | |
| 278 | - protected function makeShortCut(array $entry, ?bool $isInsideLink = false): LiteralField|string |
|
| 278 | + protected function makeShortCut(array $entry, ?bool $isInsideLink = false): LiteralField | string |
|
| 279 | 279 | { |
| 280 | 280 | $title = (string) $entry['Title']; |
| 281 | 281 | $link = (string) $entry['Link']; |