@@ -56,9 +56,9 @@ discard block |
||
56 | 56 | |
57 | 57 | <div class="section" id="mail_general_settings"> |
58 | 58 | <form id="mail_general_settings_form" class="mail_settings"> |
59 | - <h2><?php p($l->t('Email server'));?></h2> |
|
59 | + <h2><?php p($l->t('Email server')); ?></h2> |
|
60 | 60 | <a target="_blank" rel="noreferrer noopener" class="icon-info" |
61 | - title="<?php p($l->t('Open documentation'));?>" |
|
61 | + title="<?php p($l->t('Open documentation')); ?>" |
|
62 | 62 | href="<?php p(link_to_docs('admin-email')); ?>"></a> |
63 | 63 | <p class="settings-hint"><?php p($l->t('It is important to set up this server to be able to send emails, like for password reset and notifications.')); ?></p> |
64 | 64 | <p><span id="mail_settings_msg" class="msg"></span></p> |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | $selected = 'selected="selected"'; |
73 | 73 | endif; ?> |
74 | 74 | <option value="<?php p($smtpmode[0])?>" <?php p($selected) ?>><?php p($smtpmode[1]) ?></option> |
75 | - <?php endforeach;?> |
|
75 | + <?php endforeach; ?> |
|
76 | 76 | </select> |
77 | 77 | |
78 | 78 | <label id="mail_smtpsecure_label" for="mail_smtpsecure" |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | $selected = 'selected="selected"'; |
88 | 88 | endif; ?> |
89 | 89 | <option value="<?php p($secure)?>" <?php p($selected) ?>><?php p($name) ?></option> |
90 | - <?php endforeach;?> |
|
90 | + <?php endforeach; ?> |
|
91 | 91 | </select> |
92 | 92 | |
93 | 93 | <label id="mail_sendmailmode_label" for="mail_sendmailmode" class="<?= $_['mail_smtpmode'] !== 'sendmail' ? 'hidden' : '' ?>"> |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | <select name="mail_sendmailmode" id="mail_sendmailmode" class="<?= $_['mail_smtpmode'] !== 'sendmail' ? 'hidden' : '' ?>"> |
97 | 97 | <?php foreach ($mail_sendmailmode as $sendmailmodeValue => $sendmailmodeLabel): ?> |
98 | 98 | <option value="<?php p($sendmailmodeValue)?>" <?= $sendmailmodeValue === $_['mail_sendmailmode'] ? 'selected="selected"' : '' ?>><?php p($sendmailmodeLabel) ?></option> |
99 | - <?php endforeach;?> |
|
99 | + <?php endforeach; ?> |
|
100 | 100 | </select> |
101 | 101 | </p> |
102 | 102 | |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | $selected = 'selected="selected"'; |
118 | 118 | endif; ?> |
119 | 119 | <option value="<?php p($authtype)?>" <?php p($selected) ?>><?php p($name) ?></option> |
120 | - <?php endforeach;?> |
|
120 | + <?php endforeach; ?> |
|
121 | 121 | </select> |
122 | 122 | |
123 | 123 | <input type="checkbox" name="mail_smtpauth" id="mail_smtpauth" class="checkbox" value="1" |
@@ -91,7 +91,7 @@ |
||
91 | 91 | return []; |
92 | 92 | } |
93 | 93 | |
94 | - return array_map(function (IToken $token) use ($sessionToken) { |
|
94 | + return array_map(function(IToken $token) use ($sessionToken) { |
|
95 | 95 | $data = $token->jsonSerialize(); |
96 | 96 | $data['canDelete'] = true; |
97 | 97 | $data['canRename'] = $token instanceof INamedToken; |
@@ -169,7 +169,7 @@ |
||
169 | 169 | protected function setSubjects(IEvent $event, string $subject, array $parameters): void { |
170 | 170 | $placeholders = $replacements = []; |
171 | 171 | foreach ($parameters as $placeholder => $parameter) { |
172 | - $placeholders[] = '{' . $placeholder . '}'; |
|
172 | + $placeholders[] = '{'.$placeholder.'}'; |
|
173 | 173 | $replacements[] = $parameter['name']; |
174 | 174 | } |
175 | 175 |
@@ -169,7 +169,7 @@ |
||
169 | 169 | protected function setSubjects(IEvent $event, string $subject, array $parameters): void { |
170 | 170 | $placeholders = $replacements = []; |
171 | 171 | foreach ($parameters as $placeholder => $parameter) { |
172 | - $placeholders[] = '{' . $placeholder . '}'; |
|
172 | + $placeholders[] = '{'.$placeholder.'}'; |
|
173 | 173 | $replacements[] = $parameter['name']; |
174 | 174 | } |
175 | 175 |
@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | // autoload.php @generated by Composer |
4 | 4 | |
5 | -require_once __DIR__ . '/composer/autoload_real.php'; |
|
5 | +require_once __DIR__.'/composer/autoload_real.php'; |
|
6 | 6 | |
7 | 7 | return ComposerAutoloaderInitSettings::getLoader(); |
@@ -370,18 +370,18 @@ discard block |
||
370 | 370 | private function findFileWithExtension($class, $ext) |
371 | 371 | { |
372 | 372 | // PSR-4 lookup |
373 | - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
|
373 | + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext; |
|
374 | 374 | |
375 | 375 | $first = $class[0]; |
376 | 376 | if (isset($this->prefixLengthsPsr4[$first])) { |
377 | 377 | $subPath = $class; |
378 | 378 | while (false !== $lastPos = strrpos($subPath, '\\')) { |
379 | 379 | $subPath = substr($subPath, 0, $lastPos); |
380 | - $search = $subPath . '\\'; |
|
380 | + $search = $subPath.'\\'; |
|
381 | 381 | if (isset($this->prefixDirsPsr4[$search])) { |
382 | - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); |
|
382 | + $pathEnd = DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $lastPos + 1); |
|
383 | 383 | foreach ($this->prefixDirsPsr4[$search] as $dir) { |
384 | - if (file_exists($file = $dir . $pathEnd)) { |
|
384 | + if (file_exists($file = $dir.$pathEnd)) { |
|
385 | 385 | return $file; |
386 | 386 | } |
387 | 387 | } |
@@ -391,7 +391,7 @@ discard block |
||
391 | 391 | |
392 | 392 | // PSR-4 fallback dirs |
393 | 393 | foreach ($this->fallbackDirsPsr4 as $dir) { |
394 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { |
|
394 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) { |
|
395 | 395 | return $file; |
396 | 396 | } |
397 | 397 | } |
@@ -403,14 +403,14 @@ discard block |
||
403 | 403 | . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
404 | 404 | } else { |
405 | 405 | // PEAR-like class name |
406 | - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; |
|
406 | + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext; |
|
407 | 407 | } |
408 | 408 | |
409 | 409 | if (isset($this->prefixesPsr0[$first])) { |
410 | 410 | foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { |
411 | 411 | if (0 === strpos($class, $prefix)) { |
412 | 412 | foreach ($dirs as $dir) { |
413 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
413 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
414 | 414 | return $file; |
415 | 415 | } |
416 | 416 | } |
@@ -420,7 +420,7 @@ discard block |
||
420 | 420 | |
421 | 421 | // PSR-0 fallback dirs |
422 | 422 | foreach ($this->fallbackDirsPsr0 as $dir) { |
423 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
423 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
424 | 424 | return $file; |
425 | 425 | } |
426 | 426 | } |
@@ -6,5 +6,5 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'OCA\\Settings\\' => array($baseDir . '/../lib'), |
|
9 | + 'OCA\\Settings\\' => array($baseDir.'/../lib'), |
|
10 | 10 | ); |
@@ -63,49 +63,49 @@ |
||
63 | 63 | return; |
64 | 64 | } |
65 | 65 | |
66 | - $propFind->handle(self::TRASHBIN_FILENAME, function () use ($node) { |
|
66 | + $propFind->handle(self::TRASHBIN_FILENAME, function() use ($node) { |
|
67 | 67 | return $node->getFilename(); |
68 | 68 | }); |
69 | 69 | |
70 | - $propFind->handle(self::TRASHBIN_ORIGINAL_LOCATION, function () use ($node) { |
|
70 | + $propFind->handle(self::TRASHBIN_ORIGINAL_LOCATION, function() use ($node) { |
|
71 | 71 | return $node->getOriginalLocation(); |
72 | 72 | }); |
73 | 73 | |
74 | - $propFind->handle(self::TRASHBIN_TITLE, function () use ($node) { |
|
74 | + $propFind->handle(self::TRASHBIN_TITLE, function() use ($node) { |
|
75 | 75 | return $node->getTitle(); |
76 | 76 | }); |
77 | 77 | |
78 | - $propFind->handle(self::TRASHBIN_DELETION_TIME, function () use ($node) { |
|
78 | + $propFind->handle(self::TRASHBIN_DELETION_TIME, function() use ($node) { |
|
79 | 79 | return $node->getDeletionTime(); |
80 | 80 | }); |
81 | 81 | |
82 | - $propFind->handle(FilesPlugin::SIZE_PROPERTYNAME, function () use ($node) { |
|
82 | + $propFind->handle(FilesPlugin::SIZE_PROPERTYNAME, function() use ($node) { |
|
83 | 83 | return $node->getSize(); |
84 | 84 | }); |
85 | 85 | |
86 | - $propFind->handle(FilesPlugin::FILEID_PROPERTYNAME, function () use ($node) { |
|
86 | + $propFind->handle(FilesPlugin::FILEID_PROPERTYNAME, function() use ($node) { |
|
87 | 87 | return $node->getFileId(); |
88 | 88 | }); |
89 | 89 | |
90 | - $propFind->handle(FilesPlugin::PERMISSIONS_PROPERTYNAME, function () { |
|
90 | + $propFind->handle(FilesPlugin::PERMISSIONS_PROPERTYNAME, function() { |
|
91 | 91 | return 'GD'; // read + delete |
92 | 92 | }); |
93 | 93 | |
94 | - $propFind->handle(FilesPlugin::GETETAG_PROPERTYNAME, function () use ($node) { |
|
94 | + $propFind->handle(FilesPlugin::GETETAG_PROPERTYNAME, function() use ($node) { |
|
95 | 95 | // add fake etag, it is only needed to identify the preview image |
96 | 96 | return $node->getLastModified(); |
97 | 97 | }); |
98 | 98 | |
99 | - $propFind->handle(FilesPlugin::INTERNAL_FILEID_PROPERTYNAME, function () use ($node) { |
|
99 | + $propFind->handle(FilesPlugin::INTERNAL_FILEID_PROPERTYNAME, function() use ($node) { |
|
100 | 100 | // add fake etag, it is only needed to identify the preview image |
101 | 101 | return $node->getFileId(); |
102 | 102 | }); |
103 | 103 | |
104 | - $propFind->handle(FilesPlugin::HAS_PREVIEW_PROPERTYNAME, function () use ($node) { |
|
104 | + $propFind->handle(FilesPlugin::HAS_PREVIEW_PROPERTYNAME, function() use ($node) { |
|
105 | 105 | return $this->previewManager->isAvailable($node->getFileInfo()); |
106 | 106 | }); |
107 | 107 | |
108 | - $propFind->handle(FilesPlugin::MOUNT_TYPE_PROPERTYNAME, function () { |
|
108 | + $propFind->handle(FilesPlugin::MOUNT_TYPE_PROPERTYNAME, function() { |
|
109 | 109 | return ''; |
110 | 110 | }); |
111 | 111 | } |
@@ -29,15 +29,15 @@ |
||
29 | 29 | ?> |
30 | 30 | |
31 | 31 | <div id="two-factor-auth" class="section"> |
32 | - <h2><?php p($l->t('Two-Factor Authentication'));?></h2> |
|
33 | - <a target="_blank" rel="noreferrer" class="icon-info" title="<?php p($l->t('Open documentation'));?>" href="<?php p(link_to_docs('admin-2fa')); ?>"></a> |
|
32 | + <h2><?php p($l->t('Two-Factor Authentication')); ?></h2> |
|
33 | + <a target="_blank" rel="noreferrer" class="icon-info" title="<?php p($l->t('Open documentation')); ?>" href="<?php p(link_to_docs('admin-2fa')); ?>"></a> |
|
34 | 34 | <div id="two-factor-auth-settings"></div> |
35 | 35 | </div> |
36 | 36 | |
37 | 37 | <div class="section" id='encryptionAPI'> |
38 | 38 | <h2><?php p($l->t('Server-side encryption')); ?></h2> |
39 | 39 | <a target="_blank" rel="noreferrer noopener" class="icon-info" |
40 | - title="<?php p($l->t('Open documentation'));?>" |
|
40 | + title="<?php p($l->t('Open documentation')); ?>" |
|
41 | 41 | href="<?php p(link_to_docs('admin-encryption')); ?>"></a> |
42 | 42 | <p class="settings-hint"><?php p($l->t('Server-side encryption makes it possible to encrypt files which are uploaded to this server. This comes with limitations like a performance penalty, so enable this only if needed.')); ?></p> |
43 | 43 | <p id="enable"> |