diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2019-09-17 16:33:27 +0200 |
---|---|---|
committer | npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com> | 2019-09-28 09:39:28 +0000 |
commit | de6940352a2f708376219a89ec84a8e6d25ca59e (patch) | |
tree | 459bacfc183b24d611be1877fbe22bbcd4efb1d6 /apps/settings/templates/help.php | |
parent | c8cd607681ac128228f57114ce14dd67ab05de04 (diff) | |
download | nextcloud-server-de6940352a2f708376219a89ec84a8e6d25ca59e.tar.gz nextcloud-server-de6940352a2f708376219a89ec84a8e6d25ca59e.zip |
Move settings to an app
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
Diffstat (limited to 'apps/settings/templates/help.php')
-rw-r--r-- | apps/settings/templates/help.php | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/apps/settings/templates/help.php b/apps/settings/templates/help.php new file mode 100644 index 00000000000..f58fc66f1b2 --- /dev/null +++ b/apps/settings/templates/help.php @@ -0,0 +1,33 @@ +<div id="app-navigation"> + <ul> + <?php if($_['admin']) { ?> + <li> + <a class="icon-user <?php p($_['style1']); ?>" + href="<?php print_unescaped($_['url1']); ?> class= ""> + <?php p($l->t('User documentation')); ?> + </a> + </li> + <li> + <a class="icon-user-admin <?php p($_['style2']); ?>" + href="<?php print_unescaped($_['url2']); ?>"> + <?php p($l->t('Administrator documentation')); ?> + </a> + </li> + <?php } ?> + + <li> + <a href="https://docs.nextcloud.com" class="icon-category-office" target="_blank" rel="noreferrer noopener"> + <?php p($l->t('Documentation')); ?> ↗ + </a> + </li> + <li> + <a href="https://help.nextcloud.com" class="icon-comment" target="_blank" rel="noreferrer noopener"> + <?php p($l->t('Forum')); ?> ↗ + </a> + </li> +</div> + +<div id="app-content" class="help-includes"> + <iframe src="<?php print_unescaped($_['url']); ?>" class="help-iframe"> + </iframe> +</div> |