source: trunk/popuphelp.php @ 2126

Last change on this file since 2126 was 2126, checked in by rvelices, 16 years ago
  • some code refactoring before upgrade to utf (only cosmetic at this point...)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2007-10-08 23:46:09 +0000 (Mon, 08 Oct 2007) $
10// | last modifier : $Author: rvelices $
11// | revision      : $Revision: 2126 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28// +-----------------------------------------------------------------------+
29// |                           initialization                              |
30// +-----------------------------------------------------------------------+
31
32define('PHPWG_ROOT_PATH','./');
33include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
34
35// +-----------------------------------------------------------------------+
36// | Check Access and exit when user status is not ok                      |
37// +-----------------------------------------------------------------------+
38check_status(ACCESS_GUEST);
39
40$page['body_id'] = 'thePopuphelpPage';
41$title = l10n('PhpWebGallery Help');
42$page['page_banner'] = '<h1>'.$title.'</h1>';
43include(PHPWG_ROOT_PATH.'include/page_header.php');
44
45if
46  (
47    isset($_GET['page'])
48    and preg_match('/^[a-z_]*$/', $_GET['page'])
49  )
50{
51  $help_content =
52    load_language('help/'.$_GET['page'].'.html', '', '', true);
53
54  if ($help_content == false)
55  {
56    $help_content = '';
57  }
58
59  $help_content = trigger_event(
60    'get_popup_help_content', $help_content, $_GET['page']);
61}
62else
63{
64  die('Hacking attempt!');
65}
66
67$template->set_filenames(array('popuphelp' => 'popuphelp.tpl'));
68
69$template->assign_vars(
70  array
71  (
72    'HELP_CONTENT' => $help_content
73  ));
74
75// +-----------------------------------------------------------------------+
76// |                           html code display                           |
77// +-----------------------------------------------------------------------+
78
79$template->parse('popuphelp');
80
81include(PHPWG_ROOT_PATH.'include/page_tail.php');
82
83?>
Note: See TracBrowser for help on using the repository browser.