diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2019-10-18 12:06:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-18 12:06:42 +0200 |
commit | 64f1ad9381672619c8d449ef32377b0fa0c11eff (patch) | |
tree | 7d726a502be8538955f86ab3f1946c5afa231de0 /apps/files_external | |
parent | 130535b316b850e15991013e58504c3950f1e6fe (diff) | |
parent | 126444d5a64d2e6495eafd2edfe7cc056f34f415 (diff) | |
download | nextcloud-server-64f1ad9381672619c8d449ef32377b0fa0c11eff.tar.gz nextcloud-server-64f1ad9381672619c8d449ef32377b0fa0c11eff.zip |
added documentation links on settings pages (#17585)
added documentation links on settings pages
Diffstat (limited to 'apps/files_external')
-rw-r--r-- | apps/files_external/templates/settings.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_external/templates/settings.php b/apps/files_external/templates/settings.php index f94900dccde..45d4ac8406c 100644 --- a/apps/files_external/templates/settings.php +++ b/apps/files_external/templates/settings.php @@ -97,7 +97,8 @@ </div> <form data-can-create="<?php echo $canCreateMounts?'true':'false' ?>" id="files_external" class="section" data-encryption-enabled="<?php echo $_['encryptionEnabled']?'true': 'false'; ?>"> - <h2 data-anchor-name="external-storage"><?php p($l->t('External storages')); ?></h2> + <h2 class="inlineblock" data-anchor-name="external-storage"><?php p($l->t('External storages')); ?></h2> + <a target="_blank" rel="noreferrer" class="icon-info" title="<?php p($l->t('Open documentation'));?>" href="<?php p(link_to_docs('admin-external-storage')); ?>"></a> <p class="settings-hint"><?php p($l->t('External storage enables you to mount external storage services and devices as secondary Nextcloud storage devices. You may also allow users to mount their own external storage services.')); ?></p> <?php if (isset($_['dependencies']) and ($_['dependencies'] !== '') and $canCreateMounts) print_unescaped(''.$_['dependencies'].''); ?> <table id="externalStorage" class="grid" data-admin='<?php print_unescaped(json_encode($_['visibilityType'] === BackendService::VISIBILITY_ADMIN)); ?>'> |