summaryrefslogtreecommitdiffstats
path: root/settings
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-05-04 11:51:02 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-05-04 15:04:03 +0200
commiteadc2c330c36362cb192d7a352d31b5515aa26d5 (patch)
treeed941bb9b6d9fe2938c4a43e37aeb5ba57582730 /settings
parent17fedc80dac7acd3d85f1f132455e94d4fd920c6 (diff)
downloadnextcloud-server-eadc2c330c36362cb192d7a352d31b5515aa26d5.tar.gz
nextcloud-server-eadc2c330c36362cb192d7a352d31b5515aa26d5.zip
Display the module settings in the list of the encryption modules
Diffstat (limited to 'settings')
-rw-r--r--settings/admin.php10
-rw-r--r--settings/templates/admin.php2
2 files changed, 10 insertions, 2 deletions
diff --git a/settings/admin.php b/settings/admin.php
index e8d9c6530db..5720bd9f99c 100644
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -141,9 +141,10 @@ if ($request->getServerProtocol() !== 'https' || !OC_Util::isAnnotationsWorking
$formsAndMore[] = array('anchor' => 'security-warning', 'section-name' => $l->t('Security & setup warnings'));
}
$formsAndMore[] = array('anchor' => 'shareAPI', 'section-name' => $l->t('Sharing'));
+$formsAndMore[] = ['anchor' => 'encryptionAPI', 'section-name' => $l->t('Server-side encryption')];
// Prioritize fileSharingSettings and files_external and move updater to the version
-$fileSharingSettings = $filesExternal = $updaterAppPanel = '';
+$fileSharingSettings = $filesExternal = $updaterAppPanel = $ocDefaultEncryptionModulePanel = '';
foreach ($forms as $index => $form) {
if (strpos($form, 'id="fileSharingSettings"')) {
$fileSharingSettings = $form;
@@ -160,6 +161,11 @@ foreach ($forms as $index => $form) {
unset($forms[$index]);
continue;
}
+ if (strpos($form, 'id="ocDefaultEncryptionModule"')) {
+ $ocDefaultEncryptionModulePanel = $form;
+ unset($forms[$index]);
+ continue;
+ }
}
if ($filesExternal) {
$formsAndMore[] = array('anchor' => 'files_external', 'section-name' => $l->t('External Storage'));
@@ -168,6 +174,7 @@ if ($filesExternal) {
$template->assign('fileSharingSettings', $fileSharingSettings);
$template->assign('filesExternal', $filesExternal);
$template->assign('updaterAppPanel', $updaterAppPanel);
+$template->assign('ocDefaultEncryptionModulePanel', $ocDefaultEncryptionModulePanel);
$formsMap = array_map(function ($form) {
if (preg_match('%(<h2[^>]*>.*?</h2>)%i', $form, $regs)) {
@@ -190,7 +197,6 @@ $formsMap = array_map(function ($form) {
$formsAndMore = array_merge($formsAndMore, $formsMap);
// add bottom hardcoded forms from the template
-$formsAndMore[] = ['anchor' => 'encryptionAPI', 'section-name' => $l->t('Server-side encryption')];
$formsAndMore[] = ['anchor' => 'backgroundjobs', 'section-name' => $l->t('Cron')];
$formsAndMore[] = ['anchor' => 'mail_general_settings', 'section-name' => $l->t('Email server')];
$formsAndMore[] = ['anchor' => 'log-section', 'section-name' => $l->t('Log')];
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 5edf4e2a9c7..6d2796d963f 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -344,6 +344,8 @@ if ($_['cronErrors']) {
<label
for="<?php p($id) ?>"><?php p($module['displayName']) ?></label>
<br/>
+
+ <?php if ($id === 'OC_DEFAULT_MODULE') print_unescaped($_['ocDefaultEncryptionModulePanel']); ?>
<?php endforeach; ?>
</fieldset>
<?php } ?>