File: help_index.php

package info (click to toggle)
webcalendar 0.9.45-4sarge7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,888 kB
  • ctags: 4,775
  • sloc: php: 16,990; sql: 1,272; perl: 777; sh: 120; makefile: 45
file content (20 lines) | stat: -rw-r--r-- 958 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
	include_once 'includes/init.php';
	print_header('','','',true);
?>

<h2><?php etranslate("Help Index")?></h2>
<ul>
	<li><a title="<?php etranslate("Adding/Editing Calendar Entries")?>" href="help_edit_entry.php"><?php etranslate("Adding/Editing Calendar Entries")?></a></li>
	<li><a title="<?php etranslate("Layers")?>" href="help_layers.php"><?php etranslate("Layers")?></a></li>
	<li><a title="<?php etranslate("Import")?>" href="help_import.php"><?php etranslate("Import")?></a></li>
	<li><a title="<?php etranslate("Preferences")?>" href="help_pref.php"><?php etranslate("Preferences")?></a></li>
	<?php if ( $is_admin ) { ?>
		<li><a title="<?php etranslate("System Settings")?>" href="help_admin.php"><?php etranslate("System Settings")?></a></li>
	<?php } ?>
	<li><a title="<?php etranslate("Report Bug")?>" href="help_bug.php"><?php etranslate("Report Bug")?></a></li>
</ul>

<?php include_once "includes/help_trailer.php"; ?>
</body>
</html>