aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/templates
diff options
context:
space:
mode:
authorSimon L <szaimen@e.mail.de>2023-10-05 13:05:22 +0200
committerSimon L <szaimen@e.mail.de>2023-10-05 15:42:47 +0200
commit6439fdf5b61d982838daf3c5b553577e5d54392c (patch)
tree4f463713b808762a1a066a0a1d74d329ce198e65 /apps/settings/templates
parentf3f2d9b9784ef3a9304543969a0a88cd1f1054d8 (diff)
downloadnextcloud-server-6439fdf5b61d982838daf3c5b553577e5d54392c.tar.gz
nextcloud-server-6439fdf5b61d982838daf3c5b553577e5d54392c.zip
Move inline docs to online documentation
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to 'apps/settings/templates')
-rw-r--r--apps/settings/templates/help.php60
1 files changed, 20 insertions, 40 deletions
diff --git a/apps/settings/templates/help.php b/apps/settings/templates/help.php
index 18cba18559a..58e38feb64c 100644
--- a/apps/settings/templates/help.php
+++ b/apps/settings/templates/help.php
@@ -1,48 +1,28 @@
<?php
\OC_Util::addStyle('settings', 'help');
?>
-<div id="app-navigation" role="navigation" tabindex="0">
- <ul>
- <li>
- <a class="icon-user <?php if ($_['mode'] === 'user') {
- p('active');
-} ?>" <?php if ($_['mode'] === 'user') { print_unescaped('aria-current="page"'); } ?>
- href="<?php print_unescaped($_['urlUserDocs']); ?>">
- <span class="help-list__text">
- <?php p($l->t('User documentation')); ?>
- </span>
- </a>
- </li>
- <?php if ($_['admin']) { ?>
- <li>
- <a class="icon-user-admin <?php if ($_['mode'] === 'admin') {
- p('active');
-} ?>" <?php if ($_['mode'] === 'admin') { print_unescaped('aria-current="page"'); } ?>
+
+<div id="app-content">
+ <div class="help-wrapper">
+ <div class="help-content">
+ <h2 class="help-content__heading">
+ <?php p($l->t('Nextcloud help overview')); ?>
+ </h2>
+ <div class="help-content__body">
+ <a class="button" target="_blank" rel="noreferrer noopener"
href="<?php print_unescaped($_['urlAdminDocs']); ?>">
- <span class="help-list__text">
- <?php p($l->t('Administrator documentation')); ?>
- </span>
+ <?php p($l->t('Administration documentation')); ?> ↗
</a>
- </li>
- <?php } ?>
-
- <li>
- <a href="https://docs.nextcloud.com" class="icon-category-office" target="_blank" rel="noreferrer noopener">
- <span class="help-list__text">
- <?php p($l->t('Documentation')); ?> ↗
- </span>
+ <a class="button" target="_blank" rel="noreferrer noopener"
+ href="<?php print_unescaped($_['urlUserDocs']); ?>">
+ <?php p($l->t('Account documentation')); ?> ↗
</a>
- </li>
- <li>
- <a href="https://help.nextcloud.com" class="icon-comment" target="_blank" rel="noreferrer noopener">
- <span class="help-list__text">
- <?php p($l->t('Forum')); ?> ↗
- </span>
+ <a href="https://docs.nextcloud.com" class="button" target="_blank" rel="noreferrer noopener">
+ <?php p($l->t('General documentation')); ?> ↗
</a>
- </li>
-</div>
-
-<div id="app-content" class="help-includes">
- <iframe src="<?php print_unescaped($_['url']); ?>" class="help-iframe" tabindex="0">
- </iframe>
+ <a href="https://help.nextcloud.com" class="button" target="_blank" rel="noreferrer noopener">
+ <?php p($l->t('Forum')); ?> ↗
+ </a>
+ </div>
+ </div>
</div>