@@ -38,27 +38,27 @@ |
||
38 | 38 | */ |
39 | 39 | interface IApacheBackend { |
40 | 40 | |
41 | - /** |
|
42 | - * In case the user has been authenticated by a module true is returned. |
|
43 | - * |
|
44 | - * @return boolean whether the module reports a user as currently logged in. |
|
45 | - * @since 6.0.0 |
|
46 | - */ |
|
47 | - public function isSessionActive(); |
|
41 | + /** |
|
42 | + * In case the user has been authenticated by a module true is returned. |
|
43 | + * |
|
44 | + * @return boolean whether the module reports a user as currently logged in. |
|
45 | + * @since 6.0.0 |
|
46 | + */ |
|
47 | + public function isSessionActive(); |
|
48 | 48 | |
49 | - /** |
|
50 | - * Gets the current logout URL |
|
51 | - * |
|
52 | - * @return string |
|
53 | - * @since 12.0.3 |
|
54 | - */ |
|
55 | - public function getLogoutUrl(); |
|
49 | + /** |
|
50 | + * Gets the current logout URL |
|
51 | + * |
|
52 | + * @return string |
|
53 | + * @since 12.0.3 |
|
54 | + */ |
|
55 | + public function getLogoutUrl(); |
|
56 | 56 | |
57 | - /** |
|
58 | - * Return the id of the current user |
|
59 | - * @return string |
|
60 | - * @since 6.0.0 |
|
61 | - */ |
|
62 | - public function getCurrentUserId(); |
|
57 | + /** |
|
58 | + * Return the id of the current user |
|
59 | + * @return string |
|
60 | + * @since 6.0.0 |
|
61 | + */ |
|
62 | + public function getCurrentUserId(); |
|
63 | 63 | |
64 | 64 | } |
@@ -31,89 +31,89 @@ |
||
31 | 31 | * @since 9.0.0 |
32 | 32 | */ |
33 | 33 | interface IUserMountCache { |
34 | - /** |
|
35 | - * Register mounts for a user to the cache |
|
36 | - * |
|
37 | - * @param IUser $user |
|
38 | - * @param IMountPoint[] $mounts |
|
39 | - * @since 9.0.0 |
|
40 | - */ |
|
41 | - public function registerMounts(IUser $user, array $mounts); |
|
34 | + /** |
|
35 | + * Register mounts for a user to the cache |
|
36 | + * |
|
37 | + * @param IUser $user |
|
38 | + * @param IMountPoint[] $mounts |
|
39 | + * @since 9.0.0 |
|
40 | + */ |
|
41 | + public function registerMounts(IUser $user, array $mounts); |
|
42 | 42 | |
43 | - /** |
|
44 | - * Get all cached mounts for a user |
|
45 | - * |
|
46 | - * @param IUser $user |
|
47 | - * @return ICachedMountInfo[] |
|
48 | - * @since 9.0.0 |
|
49 | - */ |
|
50 | - public function getMountsForUser(IUser $user); |
|
43 | + /** |
|
44 | + * Get all cached mounts for a user |
|
45 | + * |
|
46 | + * @param IUser $user |
|
47 | + * @return ICachedMountInfo[] |
|
48 | + * @since 9.0.0 |
|
49 | + */ |
|
50 | + public function getMountsForUser(IUser $user); |
|
51 | 51 | |
52 | - /** |
|
53 | - * Get all cached mounts by storage |
|
54 | - * |
|
55 | - * @param int $numericStorageId |
|
56 | - * @param string|null $user limit the results to a single user @since 12.0.0 |
|
57 | - * @return ICachedMountInfo[] |
|
58 | - * @since 9.0.0 |
|
59 | - */ |
|
60 | - public function getMountsForStorageId($numericStorageId, $user = null); |
|
52 | + /** |
|
53 | + * Get all cached mounts by storage |
|
54 | + * |
|
55 | + * @param int $numericStorageId |
|
56 | + * @param string|null $user limit the results to a single user @since 12.0.0 |
|
57 | + * @return ICachedMountInfo[] |
|
58 | + * @since 9.0.0 |
|
59 | + */ |
|
60 | + public function getMountsForStorageId($numericStorageId, $user = null); |
|
61 | 61 | |
62 | - /** |
|
63 | - * Get all cached mounts by root |
|
64 | - * |
|
65 | - * @param int $rootFileId |
|
66 | - * @return ICachedMountInfo[] |
|
67 | - * @since 9.0.0 |
|
68 | - */ |
|
69 | - public function getMountsForRootId($rootFileId); |
|
62 | + /** |
|
63 | + * Get all cached mounts by root |
|
64 | + * |
|
65 | + * @param int $rootFileId |
|
66 | + * @return ICachedMountInfo[] |
|
67 | + * @since 9.0.0 |
|
68 | + */ |
|
69 | + public function getMountsForRootId($rootFileId); |
|
70 | 70 | |
71 | - /** |
|
72 | - * Get all cached mounts that contain a file |
|
73 | - * |
|
74 | - * @param int $fileId |
|
75 | - * @param string|null $user optionally restrict the results to a single user @since 12.0.0 |
|
76 | - * @return ICachedMountFileInfo[] |
|
77 | - * @since 9.0.0 |
|
78 | - */ |
|
79 | - public function getMountsForFileId($fileId, $user = null); |
|
71 | + /** |
|
72 | + * Get all cached mounts that contain a file |
|
73 | + * |
|
74 | + * @param int $fileId |
|
75 | + * @param string|null $user optionally restrict the results to a single user @since 12.0.0 |
|
76 | + * @return ICachedMountFileInfo[] |
|
77 | + * @since 9.0.0 |
|
78 | + */ |
|
79 | + public function getMountsForFileId($fileId, $user = null); |
|
80 | 80 | |
81 | - /** |
|
82 | - * Remove all cached mounts for a user |
|
83 | - * |
|
84 | - * @param IUser $user |
|
85 | - * @since 9.0.0 |
|
86 | - */ |
|
87 | - public function removeUserMounts(IUser $user); |
|
81 | + /** |
|
82 | + * Remove all cached mounts for a user |
|
83 | + * |
|
84 | + * @param IUser $user |
|
85 | + * @since 9.0.0 |
|
86 | + */ |
|
87 | + public function removeUserMounts(IUser $user); |
|
88 | 88 | |
89 | - /** |
|
90 | - * Remove all mounts for a user and storage |
|
91 | - * |
|
92 | - * @param $storageId |
|
93 | - * @param string $userId |
|
94 | - * @return mixed |
|
95 | - * @since 9.0.0 |
|
96 | - */ |
|
97 | - public function removeUserStorageMount($storageId, $userId); |
|
89 | + /** |
|
90 | + * Remove all mounts for a user and storage |
|
91 | + * |
|
92 | + * @param $storageId |
|
93 | + * @param string $userId |
|
94 | + * @return mixed |
|
95 | + * @since 9.0.0 |
|
96 | + */ |
|
97 | + public function removeUserStorageMount($storageId, $userId); |
|
98 | 98 | |
99 | - /** |
|
100 | - * Remove all cached mounts for a storage |
|
101 | - * |
|
102 | - * @param $storageId |
|
103 | - * @return mixed |
|
104 | - * @since 9.0.0 |
|
105 | - */ |
|
106 | - public function remoteStorageMounts($storageId); |
|
99 | + /** |
|
100 | + * Remove all cached mounts for a storage |
|
101 | + * |
|
102 | + * @param $storageId |
|
103 | + * @return mixed |
|
104 | + * @since 9.0.0 |
|
105 | + */ |
|
106 | + public function remoteStorageMounts($storageId); |
|
107 | 107 | |
108 | - /** |
|
109 | - * Get the used space for users |
|
110 | - * |
|
111 | - * Note that this only includes the space in their home directory, |
|
112 | - * not any incoming shares or external storages. |
|
113 | - * |
|
114 | - * @param IUser[] $users |
|
115 | - * @return int[] [$userId => $userSpace] |
|
116 | - * @since 13.0.0 |
|
117 | - */ |
|
118 | - public function getUsedSpaceForUsers(array $users); |
|
108 | + /** |
|
109 | + * Get the used space for users |
|
110 | + * |
|
111 | + * Note that this only includes the space in their home directory, |
|
112 | + * not any incoming shares or external storages. |
|
113 | + * |
|
114 | + * @param IUser[] $users |
|
115 | + * @return int[] [$userId => $userSpace] |
|
116 | + * @since 13.0.0 |
|
117 | + */ |
|
118 | + public function getUsedSpaceForUsers(array $users); |
|
119 | 119 | } |
@@ -29,76 +29,76 @@ |
||
29 | 29 | * Asynchronous command bus that uses the background job system as backend |
30 | 30 | */ |
31 | 31 | abstract class AsyncBus implements IBus { |
32 | - /** |
|
33 | - * List of traits for command which require sync execution |
|
34 | - * |
|
35 | - * @var string[] |
|
36 | - */ |
|
37 | - private $syncTraits = []; |
|
32 | + /** |
|
33 | + * List of traits for command which require sync execution |
|
34 | + * |
|
35 | + * @var string[] |
|
36 | + */ |
|
37 | + private $syncTraits = []; |
|
38 | 38 | |
39 | - /** |
|
40 | - * Schedule a command to be fired |
|
41 | - * |
|
42 | - * @param \OCP\Command\ICommand | callable $command |
|
43 | - */ |
|
44 | - public function push($command) { |
|
45 | - if ($this->canRunAsync($command)) { |
|
46 | - $this->queueCommand($command); |
|
47 | - } else { |
|
48 | - $this->runCommand($command); |
|
49 | - } |
|
50 | - } |
|
39 | + /** |
|
40 | + * Schedule a command to be fired |
|
41 | + * |
|
42 | + * @param \OCP\Command\ICommand | callable $command |
|
43 | + */ |
|
44 | + public function push($command) { |
|
45 | + if ($this->canRunAsync($command)) { |
|
46 | + $this->queueCommand($command); |
|
47 | + } else { |
|
48 | + $this->runCommand($command); |
|
49 | + } |
|
50 | + } |
|
51 | 51 | |
52 | - /** |
|
53 | - * Queue a command in the bus |
|
54 | - * |
|
55 | - * @param \OCP\Command\ICommand | callable $command |
|
56 | - */ |
|
57 | - abstract protected function queueCommand($command); |
|
52 | + /** |
|
53 | + * Queue a command in the bus |
|
54 | + * |
|
55 | + * @param \OCP\Command\ICommand | callable $command |
|
56 | + */ |
|
57 | + abstract protected function queueCommand($command); |
|
58 | 58 | |
59 | - /** |
|
60 | - * Require all commands using a trait to be run synchronous |
|
61 | - * |
|
62 | - * @param string $trait |
|
63 | - */ |
|
64 | - public function requireSync($trait) { |
|
65 | - $this->syncTraits[] = trim($trait, '\\'); |
|
66 | - } |
|
59 | + /** |
|
60 | + * Require all commands using a trait to be run synchronous |
|
61 | + * |
|
62 | + * @param string $trait |
|
63 | + */ |
|
64 | + public function requireSync($trait) { |
|
65 | + $this->syncTraits[] = trim($trait, '\\'); |
|
66 | + } |
|
67 | 67 | |
68 | - /** |
|
69 | - * @param \OCP\Command\ICommand | callable $command |
|
70 | - */ |
|
71 | - private function runCommand($command) { |
|
72 | - if ($command instanceof ICommand) { |
|
73 | - $command->handle(); |
|
74 | - } else { |
|
75 | - $command(); |
|
76 | - } |
|
77 | - } |
|
68 | + /** |
|
69 | + * @param \OCP\Command\ICommand | callable $command |
|
70 | + */ |
|
71 | + private function runCommand($command) { |
|
72 | + if ($command instanceof ICommand) { |
|
73 | + $command->handle(); |
|
74 | + } else { |
|
75 | + $command(); |
|
76 | + } |
|
77 | + } |
|
78 | 78 | |
79 | - /** |
|
80 | - * @param \OCP\Command\ICommand | callable $command |
|
81 | - * @return bool |
|
82 | - */ |
|
83 | - private function canRunAsync($command) { |
|
84 | - $traits = $this->getTraits($command); |
|
85 | - foreach ($traits as $trait) { |
|
86 | - if (array_search($trait, $this->syncTraits) !== false) { |
|
87 | - return false; |
|
88 | - } |
|
89 | - } |
|
90 | - return true; |
|
91 | - } |
|
79 | + /** |
|
80 | + * @param \OCP\Command\ICommand | callable $command |
|
81 | + * @return bool |
|
82 | + */ |
|
83 | + private function canRunAsync($command) { |
|
84 | + $traits = $this->getTraits($command); |
|
85 | + foreach ($traits as $trait) { |
|
86 | + if (array_search($trait, $this->syncTraits) !== false) { |
|
87 | + return false; |
|
88 | + } |
|
89 | + } |
|
90 | + return true; |
|
91 | + } |
|
92 | 92 | |
93 | - /** |
|
94 | - * @param \OCP\Command\ICommand | callable $command |
|
95 | - * @return string[] |
|
96 | - */ |
|
97 | - private function getTraits($command) { |
|
98 | - if ($command instanceof ICommand) { |
|
99 | - return class_uses($command); |
|
100 | - } else { |
|
101 | - return []; |
|
102 | - } |
|
103 | - } |
|
93 | + /** |
|
94 | + * @param \OCP\Command\ICommand | callable $command |
|
95 | + * @return string[] |
|
96 | + */ |
|
97 | + private function getTraits($command) { |
|
98 | + if ($command instanceof ICommand) { |
|
99 | + return class_uses($command); |
|
100 | + } else { |
|
101 | + return []; |
|
102 | + } |
|
103 | + } |
|
104 | 104 | } |
@@ -30,13 +30,13 @@ |
||
30 | 30 | * @since 13.0.0 |
31 | 31 | */ |
32 | 32 | interface ISearchPlugin { |
33 | - /** |
|
34 | - * @param string $search |
|
35 | - * @param int $limit |
|
36 | - * @param int $offset |
|
37 | - * @param ISearchResult $searchResult |
|
38 | - * @return bool whether the plugin has more results |
|
39 | - * @since 13.0.0 |
|
40 | - */ |
|
41 | - public function search($search, $limit, $offset, ISearchResult $searchResult); |
|
33 | + /** |
|
34 | + * @param string $search |
|
35 | + * @param int $limit |
|
36 | + * @param int $offset |
|
37 | + * @param ISearchResult $searchResult |
|
38 | + * @return bool whether the plugin has more results |
|
39 | + * @since 13.0.0 |
|
40 | + */ |
|
41 | + public function search($search, $limit, $offset, ISearchResult $searchResult); |
|
42 | 42 | } |
@@ -30,21 +30,21 @@ |
||
30 | 30 | * @since 13.0.0 |
31 | 31 | */ |
32 | 32 | interface ISearch { |
33 | - /** |
|
34 | - * @param string $search |
|
35 | - * @param array $shareTypes |
|
36 | - * @param bool $lookup |
|
37 | - * @param int $limit |
|
38 | - * @param int $offset |
|
39 | - * @return array with two elements, 1st ISearchResult as array, 2nd a bool indicating whether more result are available |
|
40 | - * @since 13.0.0 |
|
41 | - */ |
|
42 | - public function search($search, array $shareTypes, $lookup, $limit, $offset); |
|
33 | + /** |
|
34 | + * @param string $search |
|
35 | + * @param array $shareTypes |
|
36 | + * @param bool $lookup |
|
37 | + * @param int $limit |
|
38 | + * @param int $offset |
|
39 | + * @return array with two elements, 1st ISearchResult as array, 2nd a bool indicating whether more result are available |
|
40 | + * @since 13.0.0 |
|
41 | + */ |
|
42 | + public function search($search, array $shareTypes, $lookup, $limit, $offset); |
|
43 | 43 | |
44 | - /** |
|
45 | - * @param array $pluginInfo with keys 'shareType' containing the name of a corresponding constant in \OCP\Share and |
|
46 | - * 'class' with the class name of the plugin |
|
47 | - * @since 13.0.0 |
|
48 | - */ |
|
49 | - public function registerPlugin(array $pluginInfo); |
|
44 | + /** |
|
45 | + * @param array $pluginInfo with keys 'shareType' containing the name of a corresponding constant in \OCP\Share and |
|
46 | + * 'class' with the class name of the plugin |
|
47 | + * @since 13.0.0 |
|
48 | + */ |
|
49 | + public function registerPlugin(array $pluginInfo); |
|
50 | 50 | } |
@@ -30,44 +30,44 @@ |
||
30 | 30 | * @since 13.0.0 |
31 | 31 | */ |
32 | 32 | interface ISearchResult { |
33 | - /** |
|
34 | - * @param SearchResultType $type |
|
35 | - * @param array $matches |
|
36 | - * @param array|null $exactMatches |
|
37 | - * @since 13.0.0 |
|
38 | - */ |
|
39 | - public function addResultSet(SearchResultType $type, array $matches, array $exactMatches = null); |
|
33 | + /** |
|
34 | + * @param SearchResultType $type |
|
35 | + * @param array $matches |
|
36 | + * @param array|null $exactMatches |
|
37 | + * @since 13.0.0 |
|
38 | + */ |
|
39 | + public function addResultSet(SearchResultType $type, array $matches, array $exactMatches = null); |
|
40 | 40 | |
41 | - /** |
|
42 | - * @param SearchResultType $type |
|
43 | - * @param string $collaboratorId |
|
44 | - * @return bool |
|
45 | - * @since 13.0.0 |
|
46 | - */ |
|
47 | - public function hasResult(SearchResultType $type, $collaboratorId); |
|
41 | + /** |
|
42 | + * @param SearchResultType $type |
|
43 | + * @param string $collaboratorId |
|
44 | + * @return bool |
|
45 | + * @since 13.0.0 |
|
46 | + */ |
|
47 | + public function hasResult(SearchResultType $type, $collaboratorId); |
|
48 | 48 | |
49 | - /** |
|
50 | - * @param SearchResultType $type |
|
51 | - * @since 13.0.0 |
|
52 | - */ |
|
53 | - public function unsetResult(SearchResultType $type); |
|
49 | + /** |
|
50 | + * @param SearchResultType $type |
|
51 | + * @since 13.0.0 |
|
52 | + */ |
|
53 | + public function unsetResult(SearchResultType $type); |
|
54 | 54 | |
55 | - /** |
|
56 | - * @param SearchResultType $type |
|
57 | - * @since 13.0.0 |
|
58 | - */ |
|
59 | - public function markExactIdMatch(SearchResultType $type); |
|
55 | + /** |
|
56 | + * @param SearchResultType $type |
|
57 | + * @since 13.0.0 |
|
58 | + */ |
|
59 | + public function markExactIdMatch(SearchResultType $type); |
|
60 | 60 | |
61 | - /** |
|
62 | - * @param SearchResultType $type |
|
63 | - * @return bool |
|
64 | - * @since 13.0.0 |
|
65 | - */ |
|
66 | - public function hasExactIdMatch(SearchResultType $type); |
|
61 | + /** |
|
62 | + * @param SearchResultType $type |
|
63 | + * @return bool |
|
64 | + * @since 13.0.0 |
|
65 | + */ |
|
66 | + public function hasExactIdMatch(SearchResultType $type); |
|
67 | 67 | |
68 | - /** |
|
69 | - * @return array |
|
70 | - * @since 13.0.0 |
|
71 | - */ |
|
72 | - public function asArray(); |
|
68 | + /** |
|
69 | + * @return array |
|
70 | + * @since 13.0.0 |
|
71 | + */ |
|
72 | + public function asArray(); |
|
73 | 73 | } |
@@ -35,39 +35,39 @@ |
||
35 | 35 | */ |
36 | 36 | class MoveToTrashEvent extends Event { |
37 | 37 | |
38 | - /** @var bool */ |
|
39 | - private $moveToTrashBin; |
|
38 | + /** @var bool */ |
|
39 | + private $moveToTrashBin; |
|
40 | 40 | |
41 | - /** @var Node */ |
|
42 | - private $node; |
|
41 | + /** @var Node */ |
|
42 | + private $node; |
|
43 | 43 | |
44 | - public function __construct(Node $node) { |
|
45 | - $this->moveToTrashBin = true; |
|
46 | - $this->node = $node; |
|
47 | - } |
|
44 | + public function __construct(Node $node) { |
|
45 | + $this->moveToTrashBin = true; |
|
46 | + $this->node = $node; |
|
47 | + } |
|
48 | 48 | |
49 | - /** |
|
50 | - * get Node which will be deleted |
|
51 | - * |
|
52 | - * @return Node |
|
53 | - */ |
|
54 | - public function getNode() { |
|
55 | - return $this->node; |
|
56 | - } |
|
49 | + /** |
|
50 | + * get Node which will be deleted |
|
51 | + * |
|
52 | + * @return Node |
|
53 | + */ |
|
54 | + public function getNode() { |
|
55 | + return $this->node; |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * disable trash bin for this operation |
|
60 | - */ |
|
61 | - public function disableTrashBin() { |
|
62 | - $this->moveToTrashBin = false; |
|
63 | - } |
|
58 | + /** |
|
59 | + * disable trash bin for this operation |
|
60 | + */ |
|
61 | + public function disableTrashBin() { |
|
62 | + $this->moveToTrashBin = false; |
|
63 | + } |
|
64 | 64 | |
65 | - /** |
|
66 | - * should the file be moved to the trash bin? |
|
67 | - * |
|
68 | - * @return bool |
|
69 | - */ |
|
70 | - public function shouldMoveToTrashBin() { |
|
71 | - return $this->moveToTrashBin; |
|
72 | - } |
|
65 | + /** |
|
66 | + * should the file be moved to the trash bin? |
|
67 | + * |
|
68 | + * @return bool |
|
69 | + */ |
|
70 | + public function shouldMoveToTrashBin() { |
|
71 | + return $this->moveToTrashBin; |
|
72 | + } |
|
73 | 73 | } |
@@ -37,45 +37,45 @@ |
||
37 | 37 | class CreateVersionEvent extends Event { |
38 | 38 | |
39 | 39 | |
40 | - /** @var bool */ |
|
41 | - private $createVersion; |
|
40 | + /** @var bool */ |
|
41 | + private $createVersion; |
|
42 | 42 | |
43 | - /** @var Node */ |
|
44 | - private $node; |
|
43 | + /** @var Node */ |
|
44 | + private $node; |
|
45 | 45 | |
46 | - /** |
|
47 | - * CreateVersionEvent constructor. |
|
48 | - * |
|
49 | - * @param Node $node |
|
50 | - */ |
|
51 | - public function __construct(Node $node) { |
|
52 | - $this->createVersion = true; |
|
53 | - $this->node = $node; |
|
54 | - } |
|
46 | + /** |
|
47 | + * CreateVersionEvent constructor. |
|
48 | + * |
|
49 | + * @param Node $node |
|
50 | + */ |
|
51 | + public function __construct(Node $node) { |
|
52 | + $this->createVersion = true; |
|
53 | + $this->node = $node; |
|
54 | + } |
|
55 | 55 | |
56 | - /** |
|
57 | - * get Node of the file which should be versioned |
|
58 | - * |
|
59 | - * @return Node |
|
60 | - */ |
|
61 | - public function getNode() { |
|
62 | - return $this->node; |
|
63 | - } |
|
56 | + /** |
|
57 | + * get Node of the file which should be versioned |
|
58 | + * |
|
59 | + * @return Node |
|
60 | + */ |
|
61 | + public function getNode() { |
|
62 | + return $this->node; |
|
63 | + } |
|
64 | 64 | |
65 | - /** |
|
66 | - * disable versions for this file |
|
67 | - */ |
|
68 | - public function disableVersions() { |
|
69 | - $this->createVersion = false; |
|
70 | - } |
|
65 | + /** |
|
66 | + * disable versions for this file |
|
67 | + */ |
|
68 | + public function disableVersions() { |
|
69 | + $this->createVersion = false; |
|
70 | + } |
|
71 | 71 | |
72 | - /** |
|
73 | - * should a version be created for this file? |
|
74 | - * |
|
75 | - * @return bool |
|
76 | - */ |
|
77 | - public function shouldCreateVersion() { |
|
78 | - return $this->createVersion; |
|
79 | - } |
|
72 | + /** |
|
73 | + * should a version be created for this file? |
|
74 | + * |
|
75 | + * @return bool |
|
76 | + */ |
|
77 | + public function shouldCreateVersion() { |
|
78 | + return $this->createVersion; |
|
79 | + } |
|
80 | 80 | |
81 | 81 | } |
@@ -29,13 +29,13 @@ |
||
29 | 29 | \OCA\Files_Trashbin\Trashbin::registerHooks(); |
30 | 30 | |
31 | 31 | \OCA\Files\App::getNavigationManager()->add(function () { |
32 | - $l = \OC::$server->getL10N('files_trashbin'); |
|
33 | - return [ |
|
34 | - 'id' => 'trashbin', |
|
35 | - 'appname' => 'files_trashbin', |
|
36 | - 'script' => 'list.php', |
|
37 | - 'order' => 50, |
|
38 | - 'name' => $l->t('Deleted files'), |
|
39 | - 'classes' => 'pinned', |
|
40 | - ]; |
|
32 | + $l = \OC::$server->getL10N('files_trashbin'); |
|
33 | + return [ |
|
34 | + 'id' => 'trashbin', |
|
35 | + 'appname' => 'files_trashbin', |
|
36 | + 'script' => 'list.php', |
|
37 | + 'order' => 50, |
|
38 | + 'name' => $l->t('Deleted files'), |
|
39 | + 'classes' => 'pinned', |
|
40 | + ]; |
|
41 | 41 | }); |