2011-10-21 15:02:11 +00:00
|
|
|
<?php
|
|
|
|
|
2014-10-17 17:47:37 +00:00
|
|
|
\OCP\Util::addTranslations('files_encryption');
|
2014-02-11 11:44:06 +00:00
|
|
|
\OCP\Util::addscript('files_encryption', 'encryption');
|
2013-11-25 22:49:05 +00:00
|
|
|
\OCP\Util::addscript('files_encryption', 'detect-migration');
|
|
|
|
|
2013-05-31 18:34:43 +00:00
|
|
|
if (!OC_Config::getValue('maintenance', false)) {
|
2013-05-30 20:41:30 +00:00
|
|
|
OC_FileProxy::register(new OCA\Encryption\Proxy());
|
2011-10-21 15:02:11 +00:00
|
|
|
|
2013-05-30 20:41:30 +00:00
|
|
|
// User related hooks
|
|
|
|
OCA\Encryption\Helper::registerUserHooks();
|
2011-10-21 15:02:11 +00:00
|
|
|
|
2013-05-30 20:41:30 +00:00
|
|
|
// Sharing related hooks
|
|
|
|
OCA\Encryption\Helper::registerShareHooks();
|
2013-01-14 19:07:28 +00:00
|
|
|
|
2013-05-30 20:41:30 +00:00
|
|
|
// Filesystem related hooks
|
|
|
|
OCA\Encryption\Helper::registerFilesystemHooks();
|
2013-04-27 18:18:05 +00:00
|
|
|
|
2013-06-27 12:09:22 +00:00
|
|
|
// App manager related hooks
|
|
|
|
OCA\Encryption\Helper::registerAppHooks();
|
|
|
|
|
2013-09-03 13:56:25 +00:00
|
|
|
if(!in_array('crypt', stream_get_wrappers())) {
|
|
|
|
stream_wrapper_register('crypt', 'OCA\Encryption\Stream');
|
|
|
|
}
|
2013-05-30 20:41:30 +00:00
|
|
|
} else {
|
|
|
|
// logout user if we are in maintenance to force re-login
|
|
|
|
OCP\User::logout();
|
2013-05-15 12:32:50 +00:00
|
|
|
}
|
2012-02-22 21:20:46 +00:00
|
|
|
|
2013-02-09 17:01:38 +00:00
|
|
|
// Register settings scripts
|
2013-05-27 15:26:58 +00:00
|
|
|
OCP\App::registerAdmin('files_encryption', 'settings-admin');
|
|
|
|
OCP\App::registerPersonal('files_encryption', 'settings-personal');
|