source: trunk/popuphelp.php @ 3936

Last change on this file since 3936 was 3282, checked in by plg, 15 years ago

change: according to topic:15067, svn:keywords property was removed

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