-
Notifications
You must be signed in to change notification settings - Fork 75
/
help_docs.php
28 lines (22 loc) · 1.1 KB
/
help_docs.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
<?php
require_once 'includes/init.php';
require_once 'includes/help_list.php';
if ( empty ( $SERVER_SOFTWARE ) )
$SERVER_SOFTWARE = $_SERVER['SERVER_SOFTWARE'];
if ( empty ( $HTTP_USER_AGENT ) )
$HTTP_USER_AGENT = $_SERVER['HTTP_USER_AGENT'];
print_header ( [], '', '', true );
echo $helpListStr . '
<h2>' . translate ( 'WebCalendar Documentation' ) . '</h2>
<h5>' . translate ( 'Currently in English only.') . '<h5>
<ul>
<li><a href="docs/WebCalendar-UserManual.html">WebCalendar User Manual</a></li>
<li><a href="docs/WebCalendar-SysAdmin.html">WebCalendar System Administrator\'s Guide</a></li>
<li><a href="docs/WebCalendar-DeveloperGuide.html">WebCalendar Developer Guide</a></li>
<li><a href="docs/WebCalendar-Styling.html">WebCalendar Styling HOWTO</a></li>
<li><a href="docs/WebCalendar-Database.html">WebCalendar Database Documentation</a></li>
<li><a href="docs/WebCalendar-Functions.html">WebCalendar Function Documentation</a></li>
<li><a href="http://k5n.us/wiki/">WebCalendar Wiki</a></li>
</ul>';
echo print_trailer ( false, true, true );
?>