@@ -28,7 +28,7 @@ |
||
28 | 28 | ?> |
29 | 29 | <div id="theming" class="section"> |
30 | 30 | <h2 class="inlineblock"><?php p($l->t('Theming')); ?></h2> |
31 | - <a target="_blank" rel="noreferrer" class="icon-info" title="<?php p($l->t('Open documentation'));?>" href="<?php p(link_to_docs('admin-theming')); ?>"></a> |
|
31 | + <a target="_blank" rel="noreferrer" class="icon-info" title="<?php p($l->t('Open documentation')); ?>" href="<?php p(link_to_docs('admin-theming')); ?>"></a> |
|
32 | 32 | <p class="settings-hint"><?php p($l->t('Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users.')); ?></p> |
33 | 33 | <div id="theming_settings_status"> |
34 | 34 | <div id="theming_settings_loading" class="icon-loading-small" style="display: none;"></div> |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | $codes = $this->mapper->getBackupCodes($user); |
106 | 106 | $total = count($codes); |
107 | 107 | $used = 0; |
108 | - array_walk($codes, function (BackupCode $code) use (&$used) { |
|
109 | - if (1 === (int)$code->getUsed()) { |
|
108 | + array_walk($codes, function(BackupCode $code) use (&$used) { |
|
109 | + if (1 === (int) $code->getUsed()) { |
|
110 | 110 | $used++; |
111 | 111 | } |
112 | 112 | }); |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | $dbCodes = $this->mapper->getBackupCodes($user); |
127 | 127 | |
128 | 128 | foreach ($dbCodes as $dbCode) { |
129 | - if (0 === (int)$dbCode->getUsed() && $this->hasher->verify($code, $dbCode->getCode())) { |
|
129 | + if (0 === (int) $dbCode->getUsed() && $this->hasher->verify($code, $dbCode->getCode())) { |
|
130 | 130 | $dbCode->setUsed(1); |
131 | 131 | $this->mapper->update($dbCode); |
132 | 132 | return true; |
@@ -65,7 +65,7 @@ |
||
65 | 65 | //Current time |
66 | 66 | $minTime = $this->time->getDateTime(); |
67 | 67 | $minTime->add(new \DateInterval('P1D')); |
68 | - $minTime->setTime(0,0,0); |
|
68 | + $minTime->setTime(0, 0, 0); |
|
69 | 69 | |
70 | 70 | $maxTime = clone $minTime; |
71 | 71 | $maxTime->setTime(23, 59, 59); |
@@ -232,7 +232,7 @@ |
||
232 | 232 | |
233 | 233 | $placeholders = $replacements = []; |
234 | 234 | foreach ($subjectParameters as $placeholder => $parameter) { |
235 | - $placeholders[] = '{' . $placeholder . '}'; |
|
235 | + $placeholders[] = '{'.$placeholder.'}'; |
|
236 | 236 | $replacements[] = $parameter['name']; |
237 | 237 | } |
238 | 238 |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | $gid = $input->getArgument('groupid'); |
66 | 66 | $group = $this->groupManager->get($gid); |
67 | 67 | if ($group) { |
68 | - $output->writeln('<error>Group "' . $gid . '" already exists.</error>'); |
|
68 | + $output->writeln('<error>Group "'.$gid.'" already exists.</error>'); |
|
69 | 69 | return 1; |
70 | 70 | } else { |
71 | 71 | $group = $this->groupManager->createGroup($gid); |
@@ -73,9 +73,9 @@ discard block |
||
73 | 73 | $output->writeln('<error>Could not create group</error>'); |
74 | 74 | return 2; |
75 | 75 | } |
76 | - $output->writeln('Created group "' . $group->getGID() . '"'); |
|
76 | + $output->writeln('Created group "'.$group->getGID().'"'); |
|
77 | 77 | |
78 | - $displayName = trim((string)$input->getOption('display-name')); |
|
78 | + $displayName = trim((string) $input->getOption('display-name')); |
|
79 | 79 | if ($displayName !== '') { |
80 | 80 | $group->setDisplayName($displayName); |
81 | 81 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | $destinationUserObject = $this->userManager->get($destinationUser); |
99 | 99 | |
100 | 100 | if (!$sourceUserObject instanceof IUser) { |
101 | - $this->logger->alert('Could not transfer ownership: Unknown source user ' . $sourceUser); |
|
101 | + $this->logger->alert('Could not transfer ownership: Unknown source user '.$sourceUser); |
|
102 | 102 | $this->failedNotication($transfer); |
103 | 103 | return; |
104 | 104 | } |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | 'targetUser' => $transfer->getTargetUser(), |
137 | 137 | 'nodeName' => $transfer->getNodeName(), |
138 | 138 | ]) |
139 | - ->setObject('transfer', (string)$transfer->getId()); |
|
139 | + ->setObject('transfer', (string) $transfer->getId()); |
|
140 | 140 | $this->notificationManager->notify($notification); |
141 | 141 | |
142 | 142 | // Send notification to source user |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | 'targetUser' => $transfer->getTargetUser(), |
150 | 150 | 'nodeName' => $transfer->getNodeName(), |
151 | 151 | ]) |
152 | - ->setObject('transfer', (string)$transfer->getId()); |
|
152 | + ->setObject('transfer', (string) $transfer->getId()); |
|
153 | 153 | $this->notificationManager->notify($notification); |
154 | 154 | } |
155 | 155 | |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | 'targetUser' => $transfer->getTargetUser(), |
165 | 165 | 'nodeName' => $transfer->getNodeName(), |
166 | 166 | ]) |
167 | - ->setObject('transfer', (string)$transfer->getId()); |
|
167 | + ->setObject('transfer', (string) $transfer->getId()); |
|
168 | 168 | $this->notificationManager->notify($notification); |
169 | 169 | |
170 | 170 | // Send notification to source user |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | 'targetUser' => $transfer->getTargetUser(), |
178 | 178 | 'nodeName' => $transfer->getNodeName(), |
179 | 179 | ]) |
180 | - ->setObject('transfer', (string)$transfer->getId()); |
|
180 | + ->setObject('transfer', (string) $transfer->getId()); |
|
181 | 181 | $this->notificationManager->notify($notification); |
182 | 182 | } |
183 | 183 | } |
@@ -105,7 +105,7 @@ |
||
105 | 105 | $suffix = '…'; |
106 | 106 | } |
107 | 107 | |
108 | - return $prefix . mb_substr($message, $start, $end - $start) . $suffix; |
|
108 | + return $prefix.mb_substr($message, $start, $end - $start).$suffix; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | } |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | $this->urlGenerator->getAbsoluteURL( |
121 | 121 | $this->urlGenerator->linkTo( |
122 | 122 | '', |
123 | - 'ocs/v2.php/apps/files/api/v1/transferownership/' . $id |
|
123 | + 'ocs/v2.php/apps/files/api/v1/transferownership/'.$id |
|
124 | 124 | ) |
125 | 125 | ), |
126 | 126 | IAction::TYPE_POST |
@@ -133,7 +133,7 @@ discard block |
||
133 | 133 | $this->urlGenerator->getAbsoluteURL( |
134 | 134 | $this->urlGenerator->linkTo( |
135 | 135 | '', |
136 | - 'ocs/v2.php/apps/files/api/v1/transferownership/' . $id |
|
136 | + 'ocs/v2.php/apps/files/api/v1/transferownership/'.$id |
|
137 | 137 | ) |
138 | 138 | ), |
139 | 139 | IAction::TYPE_DELETE |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | [ |
157 | 157 | 'path' => [ |
158 | 158 | 'type' => 'highlight', |
159 | - 'id' => $param['targetUser'] . '::' . $param['nodeName'], |
|
159 | + 'id' => $param['targetUser'].'::'.$param['nodeName'], |
|
160 | 160 | 'name' => $param['nodeName'], |
161 | 161 | ] |
162 | 162 | ]) |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | return $notification; |
166 | 166 | } |
167 | 167 | |
168 | - public function handleTransferOwnershipFailedSource(INotification $notification, string $languageCode): INotification { |
|
168 | + public function handleTransferOwnershipFailedSource(INotification $notification, string $languageCode): INotification { |
|
169 | 169 | $l = $this->l10nFactory->get('files', $languageCode); |
170 | 170 | $param = $notification->getSubjectParameters(); |
171 | 171 | |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | [ |
178 | 178 | 'path' => [ |
179 | 179 | 'type' => 'highlight', |
180 | - 'id' => $param['targetUser'] . '::' . $param['nodeName'], |
|
180 | + 'id' => $param['targetUser'].'::'.$param['nodeName'], |
|
181 | 181 | 'name' => $param['nodeName'], |
182 | 182 | ], |
183 | 183 | 'user' => [ |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | return $notification; |
191 | 191 | } |
192 | 192 | |
193 | - public function handleTransferOwnershipFailedTarget(INotification $notification, string $languageCode): INotification { |
|
193 | + public function handleTransferOwnershipFailedTarget(INotification $notification, string $languageCode): INotification { |
|
194 | 194 | $l = $this->l10nFactory->get('files', $languageCode); |
195 | 195 | $param = $notification->getSubjectParameters(); |
196 | 196 | |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | [ |
203 | 203 | 'path' => [ |
204 | 204 | 'type' => 'highlight', |
205 | - 'id' => $param['sourceUser'] . '::' . $param['nodeName'], |
|
205 | + 'id' => $param['sourceUser'].'::'.$param['nodeName'], |
|
206 | 206 | 'name' => $param['nodeName'], |
207 | 207 | ], |
208 | 208 | 'user' => [ |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | return $notification; |
217 | 217 | } |
218 | 218 | |
219 | - public function handleTransferOwnershipDoneSource(INotification $notification, string $languageCode): INotification { |
|
219 | + public function handleTransferOwnershipDoneSource(INotification $notification, string $languageCode): INotification { |
|
220 | 220 | $l = $this->l10nFactory->get('files', $languageCode); |
221 | 221 | $param = $notification->getSubjectParameters(); |
222 | 222 | |
@@ -228,7 +228,7 @@ discard block |
||
228 | 228 | [ |
229 | 229 | 'path' => [ |
230 | 230 | 'type' => 'highlight', |
231 | - 'id' => $param['targetUser'] . '::' . $param['nodeName'], |
|
231 | + 'id' => $param['targetUser'].'::'.$param['nodeName'], |
|
232 | 232 | 'name' => $param['nodeName'], |
233 | 233 | ], |
234 | 234 | 'user' => [ |
@@ -242,7 +242,7 @@ discard block |
||
242 | 242 | return $notification; |
243 | 243 | } |
244 | 244 | |
245 | - public function handleTransferOwnershipDoneTarget(INotification $notification, string $languageCode): INotification { |
|
245 | + public function handleTransferOwnershipDoneTarget(INotification $notification, string $languageCode): INotification { |
|
246 | 246 | $l = $this->l10nFactory->get('files', $languageCode); |
247 | 247 | $param = $notification->getSubjectParameters(); |
248 | 248 | |
@@ -254,7 +254,7 @@ discard block |
||
254 | 254 | [ |
255 | 255 | 'path' => [ |
256 | 256 | 'type' => 'highlight', |
257 | - 'id' => $param['sourceUser'] . '::' . $param['nodeName'], |
|
257 | + 'id' => $param['sourceUser'].'::'.$param['nodeName'], |
|
258 | 258 | 'name' => $param['nodeName'], |
259 | 259 | ], |
260 | 260 | 'user' => [ |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | |
276 | 276 | // TODO: This should all be moved to a service that also the transferownershipContoller uses. |
277 | 277 | try { |
278 | - $transferOwnership = $this->mapper->getById((int)$notification->getObjectId()); |
|
278 | + $transferOwnership = $this->mapper->getById((int) $notification->getObjectId()); |
|
279 | 279 | } catch (DoesNotExistException $e) { |
280 | 280 | return; |
281 | 281 | } |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | 'targetUser' => $transferOwnership->getTargetUser(), |
290 | 290 | 'nodeName' => $transferOwnership->getNodeName() |
291 | 291 | ]) |
292 | - ->setObject('transfer', (string)$transferOwnership->getId()); |
|
292 | + ->setObject('transfer', (string) $transferOwnership->getId()); |
|
293 | 293 | $this->notificationManager->notify($notification); |
294 | 294 | |
295 | 295 | $this->mapper->delete($transferOwnership); |
@@ -66,16 +66,16 @@ |
||
66 | 66 | * @since 14.0.0 |
67 | 67 | */ |
68 | 68 | public function render(): string { |
69 | - return '<li>' . |
|
70 | - ' <button id="save-external-share" class="icon ' . Util::sanitizeHTML($this->getIcon()) . '" data-protected="false" data-owner-display-name="' . Util::sanitizeHTML($this->displayname) . '" data-owner="' . Util::sanitizeHTML($this->owner) . '" data-name="' . Util::sanitizeHTML($this->shareName) . '">' . Util::sanitizeHTML($this->getLabel()) . '</button>' . |
|
71 | - '</li>' . |
|
72 | - '<li id="external-share-menu-item" class="hidden">' . |
|
73 | - ' <span class="menuitem">' . |
|
74 | - ' <form class="save-form" action="#">' . |
|
75 | - ' <input type="text" id="remote_address" placeholder="[email protected]">' . |
|
76 | - ' <input type="submit" value=" " id="save-button-confirm" class="icon-confirm" disabled="disabled"></button>' . |
|
77 | - ' </form>' . |
|
78 | - ' </span>' . |
|
69 | + return '<li>'. |
|
70 | + ' <button id="save-external-share" class="icon '.Util::sanitizeHTML($this->getIcon()).'" data-protected="false" data-owner-display-name="'.Util::sanitizeHTML($this->displayname).'" data-owner="'.Util::sanitizeHTML($this->owner).'" data-name="'.Util::sanitizeHTML($this->shareName).'">'.Util::sanitizeHTML($this->getLabel()).'</button>'. |
|
71 | + '</li>'. |
|
72 | + '<li id="external-share-menu-item" class="hidden">'. |
|
73 | + ' <span class="menuitem">'. |
|
74 | + ' <form class="save-form" action="#">'. |
|
75 | + ' <input type="text" id="remote_address" placeholder="[email protected]">'. |
|
76 | + ' <input type="submit" value=" " id="save-button-confirm" class="icon-confirm" disabled="disabled"></button>'. |
|
77 | + ' </form>'. |
|
78 | + ' </span>'. |
|
79 | 79 | '</li>'; |
80 | 80 | } |
81 | 81 | } |