|
|
|
@ -11,19 +11,6 @@ |
|
|
|
|
|
|
|
|
|
$tmpl = new OCP\Template( 'files_encryption', 'settings-personal'); |
|
|
|
|
|
|
|
|
|
$blackList = explode( ',', \OCP\Config::getAppValue( 'files_encryption', 'type_blacklist', '' ) ); |
|
|
|
|
|
|
|
|
|
// Add human readable message in case nothing is blacklisted |
|
|
|
|
if ( |
|
|
|
|
1 == count( $blackList ) |
|
|
|
|
&& $blackList[0] == '' |
|
|
|
|
) { |
|
|
|
|
|
|
|
|
|
// FIXME: Make this string translatable |
|
|
|
|
$blackList[0] = "(None - all filetypes will be encrypted)"; |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
$user = \OCP\USER::getUser(); |
|
|
|
|
$view = new \OC_FilesystemView( '/' ); |
|
|
|
|
$util = new \OCA\Encryption\Util( $view, $user ); |
|
|
|
@ -36,7 +23,6 @@ $recoveryEnabledForUser = $util->recoveryEnabledForUser(); |
|
|
|
|
|
|
|
|
|
$tmpl->assign( 'recoveryEnabled', $recoveryAdminEnabled ); |
|
|
|
|
$tmpl->assign( 'recoveryEnabledForUser', $recoveryEnabledForUser ); |
|
|
|
|
$tmpl->assign( 'blacklist', $blackList ); |
|
|
|
|
|
|
|
|
|
return $tmpl->fetchPage(); |
|
|
|
|
|
|
|
|
|