@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | } |
57 | 57 | |
58 | 58 | public function getUnjailedPath($path) { |
59 | - return trim(Filesystem::normalizePath($this->rootPath . '/' . $path), '/'); |
|
59 | + return trim(Filesystem::normalizePath($this->rootPath.'/'.$path), '/'); |
|
60 | 60 | } |
61 | 61 | |
62 | 62 | /** |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | |
69 | 69 | |
70 | 70 | public function getJailedPath($path) { |
71 | - $root = rtrim($this->rootPath, '/') . '/'; |
|
71 | + $root = rtrim($this->rootPath, '/').'/'; |
|
72 | 72 | |
73 | 73 | if ($path !== $this->rootPath && strpos($path, $root) !== 0) { |
74 | 74 | return null; |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | ]); |
89 | 89 | } catch (Exception $e) { |
90 | 90 | $this->logger->logException($e, ['message' => 'Exception when creating a new file through direct editing']); |
91 | - return new DataResponse(['message' => 'Failed to create file: ' . $e->getMessage()], Http::STATUS_FORBIDDEN); |
|
91 | + return new DataResponse(['message' => 'Failed to create file: '.$e->getMessage()], Http::STATUS_FORBIDDEN); |
|
92 | 92 | } |
93 | 93 | } |
94 | 94 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | ]); |
109 | 109 | } catch (Exception $e) { |
110 | 110 | $this->logger->logException($e, ['message' => 'Exception when opening a file through direct editing']); |
111 | - return new DataResponse(['message' => 'Failed to open file: ' . $e->getMessage()], Http::STATUS_FORBIDDEN); |
|
111 | + return new DataResponse(['message' => 'Failed to open file: '.$e->getMessage()], Http::STATUS_FORBIDDEN); |
|
112 | 112 | } |
113 | 113 | } |
114 | 114 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | return new DataResponse($this->directEditingManager->getTemplates($editorId, $creatorId)); |
128 | 128 | } catch (Exception $e) { |
129 | 129 | $this->logger->logException($e); |
130 | - return new DataResponse(['message' => 'Failed to obtain template list: ' . $e->getMessage()], Http::STATUS_INTERNAL_SERVER_ERROR); |
|
130 | + return new DataResponse(['message' => 'Failed to obtain template list: '.$e->getMessage()], Http::STATUS_INTERNAL_SERVER_ERROR); |
|
131 | 131 | } |
132 | 132 | } |
133 | 133 | } |
@@ -72,7 +72,7 @@ discard block |
||
72 | 72 | return true; |
73 | 73 | } |
74 | 74 | |
75 | - $size = isset($queryParams['size']) ? (int)$queryParams['size'] : -1; |
|
75 | + $size = isset($queryParams['size']) ? (int) $queryParams['size'] : -1; |
|
76 | 76 | |
77 | 77 | $path = $request->getPath(); |
78 | 78 | $node = $this->server->tree->getNodeForPath($path); |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | try { |
104 | 104 | $file = $this->cache->get($addressbook->getResourceId(), $node->getName(), $size, $node); |
105 | 105 | $response->setHeader('Content-Type', $file->getMimeType()); |
106 | - $fileName = $node->getName() . '.' . PhotoCache::ALLOWED_CONTENT_TYPES[$file->getMimeType()]; |
|
106 | + $fileName = $node->getName().'.'.PhotoCache::ALLOWED_CONTENT_TYPES[$file->getMimeType()]; |
|
107 | 107 | $response->setHeader('Content-Disposition', "attachment; filename=$fileName"); |
108 | 108 | $response->setStatus(200); |
109 | 109 |
@@ -36,7 +36,7 @@ |
||
36 | 36 | * @NoSubAdminRequired |
37 | 37 | */ |
38 | 38 | public function getPdf() { |
39 | - $data = file_get_contents(__DIR__ . '/../../data/Reasons to use Nextcloud.pdf'); |
|
39 | + $data = file_get_contents(__DIR__.'/../../data/Reasons to use Nextcloud.pdf'); |
|
40 | 40 | |
41 | 41 | $resp = new DataDisplayResponse($data); |
42 | 42 | $resp->addHeader('Content-Type', 'application/pdf'); |
@@ -60,7 +60,7 @@ |
||
60 | 60 | $this->status = IUserStatus::OFFLINE; |
61 | 61 | } |
62 | 62 | if ($status->getClearAt() !== null) { |
63 | - $this->clearAt = DateTimeImmutable::createFromFormat('U', (string)$status->getClearAt()); |
|
63 | + $this->clearAt = DateTimeImmutable::createFromFormat('U', (string) $status->getClearAt()); |
|
64 | 64 | } |
65 | 65 | } |
66 | 66 |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | public function search(IUser $user, ISearchQuery $query): SearchResult { |
95 | 95 | return SearchResult::complete( |
96 | 96 | $this->l10n->t('Comments'), |
97 | - array_map(function (Result $result) { |
|
97 | + array_map(function(Result $result) { |
|
98 | 98 | $path = $result->path; |
99 | 99 | $pathInfo = pathinfo($path); |
100 | 100 | $isUser = $this->userManager->userExists($result->authorId); |
@@ -105,7 +105,7 @@ discard block |
||
105 | 105 | $avatarUrl, |
106 | 106 | $result->name, |
107 | 107 | $path, |
108 | - $this->urlGenerator->linkToRouteAbsolute('files.view.index',[ |
|
108 | + $this->urlGenerator->linkToRouteAbsolute('files.view.index', [ |
|
109 | 109 | 'dir' => $pathInfo['dirname'], |
110 | 110 | 'scrollto' => $pathInfo['basename'], |
111 | 111 | ]), |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <div class="section development-notice"> |
2 | 2 | <p> |
3 | - <a href="<?php p($_['reasons-use-nextcloud-pdf-link']); ?>" id="open-reasons-use-nextcloud-pdf" class="link-button icon-file" target="_blank"><?php p($l->t('Reasons to use Nextcloud in your organization'));?></a> |
|
3 | + <a href="<?php p($_['reasons-use-nextcloud-pdf-link']); ?>" id="open-reasons-use-nextcloud-pdf" class="link-button icon-file" target="_blank"><?php p($l->t('Reasons to use Nextcloud in your organization')); ?></a> |
|
4 | 4 | </p> |
5 | 5 | <p> |
6 | 6 | <?php print_unescaped(str_replace( |
@@ -106,7 +106,7 @@ |
||
106 | 106 | $jsTrans = []; |
107 | 107 | foreach ($translations as $id => $val) { |
108 | 108 | if (is_array($val)) { |
109 | - $val = '[ ' . implode(',', $val) . ']'; |
|
109 | + $val = '[ '.implode(',', $val).']'; |
|
110 | 110 | } |
111 | 111 | $jsTrans[] = "\"$id\" : \"$val\""; |
112 | 112 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | <meta charset="utf-8"> |
5 | 5 | <title> |
6 | 6 | <?php |
7 | - p(!empty($_['application'])?$_['application'].' - ':''); |
|
7 | + p(!empty($_['application']) ? $_['application'].' - ' : ''); |
|
8 | 8 | p($theme->getTitle()); |
9 | 9 | ?> |
10 | 10 | </title> |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | <?php } ?> |
16 | 16 | <meta name="apple-mobile-web-app-capable" content="yes"> |
17 | 17 | <meta name="apple-mobile-web-app-status-bar-style" content="black"> |
18 | - <meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid'] !== 'files')? $_['application']:$theme->getTitle()); ?>"> |
|
18 | + <meta name="apple-mobile-web-app-title" content="<?php p((!empty($_['application']) && $_['appid'] !== 'files') ? $_['application'] : $theme->getTitle()); ?>"> |
|
19 | 19 | <meta name="mobile-web-app-capable" content="yes"> |
20 | 20 | <meta name="theme-color" content="<?php p($theme->getColorPrimary()); ?>"> |
21 | 21 | <link rel="icon" href="<?php print_unescaped(image_path($_['appid'], 'favicon.ico')); /* IE11+ supports png */ ?>"> |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | <?php emit_script_loading_tags($_); ?> |
28 | 28 | <?php print_unescaped($_['headers']); ?> |
29 | 29 | </head> |
30 | -<body id="<?php p($_['bodyid']);?>"> |
|
30 | +<body id="<?php p($_['bodyid']); ?>"> |
|
31 | 31 | <?php include('layout.noscript.warning.php'); ?> |
32 | 32 | <?php foreach ($_['initialStates'] as $app => $initialState) { ?> |
33 | 33 | <input type="hidden" id="initial-state-<?php p($app); ?>" value="<?php p(base64_encode($initialState)); ?>"> |