* * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ namespace OCP\Files_FullTextSearch\Model; use OC\FullTextSearch\Model\IndexDocument; use OCP\FullTextSearch\Model\IIndexDocument; /** * Abstract Class AFilesDocument * * This is mostly used by 3rd party apps that want to complete the IIndexDocument * with more information about a file before its index: * * \OC::$server->getEventDispatcher()->addListener( * '\OCA\Files_FullTextSearch::onFileIndexing', * function(GenericEvent $e) { * //@var \OCP\Files\Node $file * $file = $e->getArgument('file'); * * // @var \OCP\Files_FullTextSearch\Model\AFilesDocument $document * $document = $e->getArgument('document'); * } * ); * * @since 15.0.0 * */ abstract class AFilesDocument extends IndexDocument { /** * Returns the owner of the document/file. * * @since 15.0.0 * * @return string */ abstract public function getOwnerId(): string; /** * Returns the current viewer of the document/file. * * @since 15.0.0 * * @return string */ abstract public function getViewerId(): string; /** * Returns the type of the document/file. * * @since 15.0.0 * * @return string \OCP\Files\FileInfo::TYPE_FILE|\OCP\Files\FileInfo::TYPE_FOLDER */ abstract public function getType(): string; /** * Returns the mimetype of the document/file. * * @since 15.0.0 * * @return string */ abstract public function getMimetype(): string; /** * Returns the path of the document/file. * * @since 15.0.0 * * @return string */ abstract public function getPath(): string; } n-tests-for-renaming-a-share-by-a-user-with-stale-shares'>add-integration-tests-for-renaming-a-share-by-a-user-with-stale-shares Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/build/translation-checker.php
blob: 1f7ec343af54a9f5b1ce4836e4458f8367ee5811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66