Welcome to mirror list, hosted at ThFree Co, Russian Federation.

app.php « appinfo « files_encryption « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 842b1a1ff2799f2e5e97d1db03b3246f1fb5960d (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
<?php

\OCP\Util::addscript('files_encryption', 'encryption');
\OCP\Util::addscript('files_encryption', 'detect-migration');

if (!OC_Config::getValue('maintenance', false)) {
	OC_FileProxy::register(new OCA\Files_Encryption\Proxy());

	// User related hooks
	OCA\Files_Encryption\Helper::registerUserHooks();

	// Sharing related hooks
	OCA\Files_Encryption\Helper::registerShareHooks();

	// Filesystem related hooks
	OCA\Files_Encryption\Helper::registerFilesystemHooks();

	// App manager related hooks
	OCA\Files_Encryption\Helper::registerAppHooks();

	if(!in_array('crypt', stream_get_wrappers())) {
		stream_wrapper_register('crypt', 'OCA\Files_Encryption\Stream');
	}
} else {
	// logout user if we are in maintenance to force re-login
	OCP\User::logout();
}

// Register settings scripts
OCP\App::registerAdmin('files_encryption', 'settings-admin');
OCP\App::registerPersonal('files_encryption', 'settings-personal');