forked from mantisbt/mantisbt-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocumentation.php
67 lines (58 loc) · 2.22 KB
/
documentation.php
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
include( "top.php" );
?>
<br />
<div class="row show-grid clear-both">
<div class="col-md-8 col-sm-8">
<h1>Docs for Administrators</h1>
<ul class="icons">
<li>
<i class="icon-book"></i> <a href="<?php echo $g_docs_url, $g_docs_path, $g_docs_admin_guide; ?>">Administrator's Guide</a>
</li>
<li>
<i class="icon-book"></i> <a href="<?php echo $g_wiki_url; ?>">Wiki</a>
</li>
<li>
<i class="icon-book"></i> <a href="<?php echo $g_blog_url; ?>">Blog</a>
</li>
<li>
<i class="icon-twitter"></i> <a href="https://www.twitter.com/mantisbt">Twitter</a>
</li>
<li>
<i class="icon-book"></i> <a href="<?php echo $g_wiki_url; ?>doku.php/mantisbt:press">Reviews and Press Articles</a>
</li>
</ul>
</div>
<div class="col-md-1 col-sm-1"></div>
<div class="col-sm-3 col-md-3 note-stick stick pull-right">
<div style="font-size: 32px;"> <i class="icon-book"></i>
</div>
<br>
<h2>Administrator's Guide</h2>
<br>
<a href="<?php echo $g_docs_url, $g_docs_path, $g_docs_admin_guide; ?>/html-desktop/" onclick="ga('send', 'event', 'Documentation', 'Browse Admin Docs');" type="button" class="ex btn btn-default btn-inverse btn-block">
Browse Docs
</a>
<a href="<?php echo $g_docs_url, $g_docs_path, $g_docs_admin_guide, "/$g_docs_admin_guide.pdf"; ?>" onclick="ga('send', 'event', 'Documentation', 'Download Admin PDF');" type="button" class="ex btn btn-default btn-inverse btn-block">
Download PDF
</a>
</div>
</div>
<hr>
<?php
include 'doc_dev_inc.php';
?>
<hr>
<div class="row show-grid clear-both">
<div class="col-md-8 col-sm-8">
<h1>Docs for Translators</h1>
<p>
MantisBT ships in <a href="https://github.com/mantisbt/mantisbt/tree/master/lang">50 languages</a> providing it a great penetration around the world.
Anyone can contribute improvements to existing languages or even new languages via
<a href="https://translatewiki.net/wiki/Translating:MantisBT">translatewiki.net</a>.
For more details check the <a href="https://mantisbt.org/wiki/doku.php/mantisbt:translationshowto">'Translators How To Guide'</a>.
</p>
</div>
</div>
<?php
include( "bot.php" );