configured
[bMailZu.git] / help.php
blobdc7067b8b3b24588b6b48e72a1a739066b41ebe4
1 <?php
2 /**
3 * This is the pop-up help file for the system
4 * This function simply prints out an HTML help file for
5 * users to reference
6 * @author Nick Korbel <lqqkout13@users.sourceforge.net>
7 * @version 07-10-04
8 * @package phpScheduleIt
10 * Copyright (C) 2003 - 2005 phpScheduleIt
11 * License: GPL, see LICENSE
14 include_once('config/config.php');
16 global $languages;
17 global $lang;
18 global $charset;
20 echo "<?xml version=\"1.0\" encoding=\"$charset\"?" . ">\n";
22 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
23 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
24 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?=$languages[$lang][2]?>" lang="<?=$languages[$lang][2]?>">
25 <head>
26 <title>MailZu <?=translate('Help')?></title>
27 <meta http-equiv="Content-Type" content="text/html; charset=<?=$charset?>" />
28 <style type="text/css">
29 <!--
30 li {
31 font-size: 12px;
32 margin-top: 0px;
33 margin-right: 0px;
34 margin-bottom: 0px;
35 margin-left: 0px;
37 body {
38 font-family: Verdana, Arial, Helvetica, sans-serif;
39 margin-top: 5px;
40 margin-right: 5px;
41 margin-bottom: 5px;
42 margin-left: 5px;
43 background-color: #F0F0F0;
45 p {
46 font-size: 12px;
47 margin-left: 25px;
48 margin-top: 3px;
50 h5 {
51 margin-left: 10px;
53 a {
54 color: #104E8B;
56 a:hover {
57 color: #474747;
59 -->
60 </style>
61 </head>
62 <body>
64 $help_file = 'lang/' . $languages[$lang][2] . '.help.php';
65 if (file_exists($help_file)) {
66 include_once($help_file);
68 else {
69 include_once('lang/en.help.php');
72 </body>
73 </html>