@@ -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 | } |
@@ -71,17 +71,17 @@ discard block |
||
71 | 71 | $this->storageId = self::adjustStorageId($this->storageId); |
72 | 72 | |
73 | 73 | if ($row = self::getStorageById($this->storageId)) { |
74 | - $this->numericId = (int)$row['numeric_id']; |
|
74 | + $this->numericId = (int) $row['numeric_id']; |
|
75 | 75 | } else { |
76 | 76 | $connection = \OC::$server->getDatabaseConnection(); |
77 | 77 | $available = $isAvailable ? 1 : 0; |
78 | 78 | if ($connection->insertIfNotExist('*PREFIX*storages', ['id' => $this->storageId, 'available' => $available])) { |
79 | - $this->numericId = (int)$connection->lastInsertId('*PREFIX*storages'); |
|
79 | + $this->numericId = (int) $connection->lastInsertId('*PREFIX*storages'); |
|
80 | 80 | } else { |
81 | 81 | if ($row = self::getStorageById($this->storageId)) { |
82 | - $this->numericId = (int)$row['numeric_id']; |
|
82 | + $this->numericId = (int) $row['numeric_id']; |
|
83 | 83 | } else { |
84 | - throw new \RuntimeException('Storage could neither be inserted nor be selected from the database: ' . $this->storageId); |
|
84 | + throw new \RuntimeException('Storage could neither be inserted nor be selected from the database: '.$this->storageId); |
|
85 | 85 | } |
86 | 86 | } |
87 | 87 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | $storageId = self::adjustStorageId($storageId); |
145 | 145 | |
146 | 146 | if ($row = self::getStorageById($storageId)) { |
147 | - return (int)$row['numeric_id']; |
|
147 | + return (int) $row['numeric_id']; |
|
148 | 148 | } else { |
149 | 149 | return null; |
150 | 150 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | public function getAvailability() { |
157 | 157 | if ($row = self::getStorageById($this->storageId)) { |
158 | 158 | return [ |
159 | - 'available' => (int)$row['available'] === 1, |
|
159 | + 'available' => (int) $row['available'] === 1, |
|
160 | 160 | 'last_checked' => $row['last_checked'] |
161 | 161 | ]; |
162 | 162 | } else { |
@@ -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"> |
@@ -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; |
@@ -59,7 +59,7 @@ |
||
59 | 59 | if ($this->enabled && $this->cloudIdManager->isValidCloudId($search) && $offset === 0) { |
60 | 60 | list($remoteGroup, $serverUrl) = $this->splitGroupRemote($search); |
61 | 61 | $result['exact'][] = [ |
62 | - 'label' => $remoteGroup . " ($serverUrl)", |
|
62 | + 'label' => $remoteGroup." ($serverUrl)", |
|
63 | 63 | 'guid' => $remoteGroup, |
64 | 64 | 'name' => $remoteGroup, |
65 | 65 | 'value' => [ |
@@ -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 |