root/wifidogadmin/wifidog/help.php

Revision 479, 3.0 kB (checked in by insultant, 8 months ago)

--

Line 
1 <?php
2
3 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
4
5 // +-------------------------------------------------------------------+
6 // | WiFiDog Authentication Server                                     |
7 // | =============================                                     |
8 // |                                                                   |
9 // | The WiFiDog Authentication Server is part of the WiFiDog captive  |
10 // | portal suite.                                                     |
11 // +-------------------------------------------------------------------+
12 // | PHP version 5 required.                                           |
13 // +-------------------------------------------------------------------+
14 // | Homepage:     http://www.wifidog.org/                             |
15 // | Source Forge: http://sourceforge.net/projects/wifidog/            |
16 // +-------------------------------------------------------------------+
17 // | This program is free software; you can redistribute it and/or     |
18 // | modify it under the terms of the GNU General Public License as    |
19 // | published by the Free Software Foundation; either version 2 of    |
20 // | the License, or (at your option) any later version.               |
21 // |                                                                   |
22 // | This program is distributed in the hope that it will be useful,   |
23 // | but WITHOUT ANY WARRANTY; without even the implied warranty of    |
24 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     |
25 // | GNU General Public License for more details.                      |
26 // |                                                                   |
27 // | You should have received a copy of the GNU General Public License |
28 // | along with this program; if not, contact:                         |
29 // |                                                                   |
30 // | Free Software Foundation           Voice:  +1-617-542-5942        |
31 // | 59 Temple Place - Suite 330        Fax:    +1-617-542-2652        |
32 // | Boston, MA  02111-1307,  USA       gnu@gnu.org                    |
33 // |                                                                   |
34 // +-------------------------------------------------------------------+
35
36 /**
37  * FAQ page
38  *
39  * @package    WiFiDogAuthServer
40  * @author     Philippe April
41  * @copyright  2005-2006 Philippe April
42  * @version    Subversion $Id: help.php 1009 2006-03-28 08:08:08Z benoitg $
43  * @link       http://www.wifidog.org/
44  */
45
46 /**
47  * Load required files
48  */
49 require_once(dirname(__FILE__) . '/include/common.php');
50
51 require_once('classes/MainUI.php');
52 require_once('classes/Network.php');
53 $smarty = SmartyWifidog::getObject();
54 $smarty->assign('read_the_faq',
55     sprintf('Read the <a href="%sfaq.php">faq</a> document for more information.', BASE_URL_PATH));
56
57 $ui = MainUI::getObject();
58 $ui->addContent('main_area_middle', $smarty->fetch("templates/sites/help.tpl"));
59 $ui->display();
60
61 /*
62  * Local variables:
63  * tab-width: 4
64  * c-basic-offset: 4
65  * c-hanging-comment-ender-p: nil
66  * End:
67  */
68
69 ?>
70
Note: See TracBrowser for help on using the browser.