@@ -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); |
@@ -49,20 +49,20 @@ |
||
49 | 49 | |
50 | 50 | $tmpDir = \OC::$server->getTempManager()->getTempBaseDir(); |
51 | 51 | |
52 | - $defaultParameters = ' -env:UserInstallation=file://' . escapeshellarg($tmpDir . '/owncloud-' . \OC_Util::getInstanceId() . '/') . ' --headless --nologo --nofirststartwizard --invisible --norestore --convert-to png --outdir '; |
|
52 | + $defaultParameters = ' -env:UserInstallation=file://'.escapeshellarg($tmpDir.'/owncloud-'.\OC_Util::getInstanceId().'/').' --headless --nologo --nofirststartwizard --invisible --norestore --convert-to png --outdir '; |
|
53 | 53 | $clParameters = \OC::$server->getConfig()->getSystemValue('preview_office_cl_parameters', $defaultParameters); |
54 | 54 | |
55 | - $exec = $this->cmd . $clParameters . escapeshellarg($tmpDir) . ' ' . escapeshellarg($absPath); |
|
55 | + $exec = $this->cmd.$clParameters.escapeshellarg($tmpDir).' '.escapeshellarg($absPath); |
|
56 | 56 | |
57 | 57 | shell_exec($exec); |
58 | 58 | |
59 | 59 | //create imagick object from png |
60 | 60 | $pngPreview = null; |
61 | 61 | try { |
62 | - list($dirname, , , $filename) = array_values(pathinfo($absPath)); |
|
63 | - $pngPreview = $tmpDir . '/' . $filename . '.png'; |
|
62 | + list($dirname,,, $filename) = array_values(pathinfo($absPath)); |
|
63 | + $pngPreview = $tmpDir.'/'.$filename.'.png'; |
|
64 | 64 | |
65 | - $png = new \imagick($pngPreview . '[0]'); |
|
65 | + $png = new \imagick($pngPreview.'[0]'); |
|
66 | 66 | $png->setImageFormat('jpg'); |
67 | 67 | } catch (\Exception $e) { |
68 | 68 | $this->cleanTmpFiles(); |
@@ -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 | } |
@@ -155,7 +155,7 @@ |
||
155 | 155 | } |
156 | 156 | |
157 | 157 | public function supportedEntities(): array { |
158 | - return [ File::class ]; |
|
158 | + return [File::class]; |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | public function isAvailableForScope(int $scope): bool { |
@@ -106,12 +106,12 @@ |
||
106 | 106 | } |
107 | 107 | |
108 | 108 | return [ |
109 | - 'providers' => array_map(function (IProvidesPersonalSettings $provider) use ($user) { |
|
109 | + 'providers' => array_map(function(IProvidesPersonalSettings $provider) use ($user) { |
|
110 | 110 | return [ |
111 | 111 | 'provider' => $provider, |
112 | 112 | 'settings' => $provider->getPersonalSettings($user) |
113 | 113 | ]; |
114 | - }, array_filter($this->providerLoader->getProviders($user), function (IProvider $provider) { |
|
114 | + }, array_filter($this->providerLoader->getProviders($user), function(IProvider $provider) { |
|
115 | 115 | return $provider instanceof IProvidesPersonalSettings; |
116 | 116 | })) |
117 | 117 | ]; |
@@ -50,7 +50,7 @@ |
||
50 | 50 | * @return ILinkAction |
51 | 51 | */ |
52 | 52 | public function newEMailAction($icon, $name, $email) { |
53 | - return $this->newLinkAction($icon, $name, 'mailto:' . $email); |
|
53 | + return $this->newLinkAction($icon, $name, 'mailto:'.$email); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | } |
@@ -57,17 +57,17 @@ |
||
57 | 57 | |
58 | 58 | try { |
59 | 59 | $jobStartTime = time(); |
60 | - $logger->debug('Run ' . get_class($this) . ' job with ID ' . $this->getId(), ['app' => 'cron']); |
|
60 | + $logger->debug('Run '.get_class($this).' job with ID '.$this->getId(), ['app' => 'cron']); |
|
61 | 61 | $this->run($this->argument); |
62 | 62 | $timeTaken = time() - $jobStartTime; |
63 | 63 | |
64 | - $logger->debug('Finished ' . get_class($this) . ' job with ID ' . $this->getId() . ' in ' . $timeTaken . ' seconds', ['app' => 'cron']); |
|
64 | + $logger->debug('Finished '.get_class($this).' job with ID '.$this->getId().' in '.$timeTaken.' seconds', ['app' => 'cron']); |
|
65 | 65 | $jobList->setExecutionTime($this, $timeTaken); |
66 | 66 | } catch (\Throwable $e) { |
67 | 67 | if ($logger) { |
68 | 68 | $logger->logException($e, [ |
69 | 69 | 'app' => 'core', |
70 | - 'message' => 'Error while running background job (class: ' . get_class($this) . ', arguments: ' . print_r($this->argument, true) . ')' |
|
70 | + 'message' => 'Error while running background job (class: '.get_class($this).', arguments: '.print_r($this->argument, true).')' |
|
71 | 71 | ]); |
72 | 72 | } |
73 | 73 | } |
@@ -90,12 +90,12 @@ discard block |
||
90 | 90 | $destinationUserObject = $this->userManager->get($input->getArgument('destination-user')); |
91 | 91 | |
92 | 92 | if (!$sourceUserObject instanceof IUser) { |
93 | - $output->writeln("<error>Unknown source user " . $input->getArgument('source-user') . "</error>"); |
|
93 | + $output->writeln("<error>Unknown source user ".$input->getArgument('source-user')."</error>"); |
|
94 | 94 | return 1; |
95 | 95 | } |
96 | 96 | |
97 | 97 | if (!$destinationUserObject instanceof IUser) { |
98 | - $output->writeln("<error>Unknown destination user " . $input->getArgument('destination-user') . "</error>"); |
|
98 | + $output->writeln("<error>Unknown destination user ".$input->getArgument('destination-user')."</error>"); |
|
99 | 99 | return 1; |
100 | 100 | } |
101 | 101 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | $input->getOption('move') === true |
109 | 109 | ); |
110 | 110 | } catch (TransferOwnershipException $e) { |
111 | - $output->writeln("<error>" . $e->getMessage() . "</error>"); |
|
111 | + $output->writeln("<error>".$e->getMessage()."</error>"); |
|
112 | 112 | return $e->getCode() !== 0 ? $e->getCode() : 1; |
113 | 113 | } |
114 | 114 |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | 'targetUser' => $recipient, |
113 | 113 | 'nodeName' => $node->getName(), |
114 | 114 | ]) |
115 | - ->setObject('transfer', (string)$transferOwnership->getId()); |
|
115 | + ->setObject('transfer', (string) $transferOwnership->getId()); |
|
116 | 116 | |
117 | 117 | $this->notificationManager->notify($notification); |
118 | 118 | |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | |
136 | 136 | $notification = $this->notificationManager->createNotification(); |
137 | 137 | $notification->setApp('files') |
138 | - ->setObject('transfer', (string)$id); |
|
138 | + ->setObject('transfer', (string) $id); |
|
139 | 139 | $this->notificationManager->markProcessed($notification); |
140 | 140 | |
141 | 141 | $newTransferOwnership = new TransferOwnershipEntity(); |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | |
169 | 169 | $notification = $this->notificationManager->createNotification(); |
170 | 170 | $notification->setApp('files') |
171 | - ->setObject('transfer', (string)$id); |
|
171 | + ->setObject('transfer', (string) $id); |
|
172 | 172 | $this->notificationManager->markProcessed($notification); |
173 | 173 | |
174 | 174 | $notification = $this->notificationManager->createNotification(); |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | 'targetUser' => $transferOwnership->getTargetUser(), |
181 | 181 | 'nodeName' => $transferOwnership->getNodeName() |
182 | 182 | ]) |
183 | - ->setObject('transfer', (string)$transferOwnership->getId()); |
|
183 | + ->setObject('transfer', (string) $transferOwnership->getId()); |
|
184 | 184 | $this->notificationManager->notify($notification); |
185 | 185 | |
186 | 186 | $this->mapper->delete($transferOwnership); |