diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-10-19 11:10:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-19 11:10:40 +0200 |
commit | 6b505fe3b5e460e0ea75a233d51247ef4c04d03e (patch) | |
tree | 6bba269ea76cdc163379c56a7f6438cde0b53d8d /apps | |
parent | 9396075e6d965aa5efdae74f1e16b2023894f4e0 (diff) | |
parent | 2836f80c5e61bb875473b6bb7daee9507bad61ff (diff) | |
download | nextcloud-server-6b505fe3b5e460e0ea75a233d51247ef4c04d03e.tar.gz nextcloud-server-6b505fe3b5e460e0ea75a233d51247ef4c04d03e.zip |
Merge pull request #17589 from nextcloud/backport/17585/stable17
[stable17] added documentation links on settings pages
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/templates/settings.php | 3 | ||||
-rw-r--r-- | apps/theming/templates/settings-admin.php | 1 |
2 files changed, 3 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)); ?>'> diff --git a/apps/theming/templates/settings-admin.php b/apps/theming/templates/settings-admin.php index 5a73eb02535..d7de5b75053 100644 --- a/apps/theming/templates/settings-admin.php +++ b/apps/theming/templates/settings-admin.php @@ -28,6 +28,7 @@ style('theming', 'settings-admin'); ?> <div id="theming" class="section"> <h2 class="inlineblock"><?php p($l->t('Theming')); ?></h2> + <a target="_blank" rel="noreferrer" class="icon-info" title="<?php p($l->t('Open documentation'));?>" href="<?php p(link_to_docs('admin-theming')); ?>"></a> <p class="settings-hint"><?php p($l->t('Theming makes it possible to easily customize the look and feel of your instance and supported clients. This will be visible for all users.')); ?></p> <div id="theming_settings_status"> <div id="theming_settings_loading" class="icon-loading-small" style="display: none;"></div> |