Welcome to mirror list, hosted at ThFree Co, Russian Federation.

help.php « templates « settings « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 763bc430133a675bd5491ae42b7935f9ed6e8490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
\OC_Util::addStyle('settings', 'help');
?>
<div id="app-navigation" role="navigation">
	<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"'); } ?>
				href="<?php print_unescaped($_['urlAdminDocs']); ?>">
				<span class="help-list__text">
					<?php p($l->t('Administrator documentation')); ?>
				</span>
			</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>
		</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>
		</li>
</div>

<div id="app-content" class="help-includes">
	<iframe src="<?php print_unescaped($_['url']); ?>" class="help-iframe">
	</iframe>
</div>