source: trunk/popuphelp.php @ 25949

Last change on this file since 25949 was 19703, checked in by plg, 11 years ago

update Piwigo headers to 2013 (the end of the world didn't occur as expected on r12922)

  • Property svn:eol-style set to LF
File size: 3.2 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based photo gallery                                    |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008-2013 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','./');
29define('PWG_HELP', true);
30include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
31
32// +-----------------------------------------------------------------------+
33// | Check Access and exit when user status is not ok                      |
34// +-----------------------------------------------------------------------+
35check_status(ACCESS_GUEST);
36
37$page['body_id'] = 'thePopuphelpPage';
38$title = l10n('Piwigo Help');
39$page['page_banner'] = '';
40$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
41include(PHPWG_ROOT_PATH.'include/page_header.php');
42
43if
44  (
45    isset($_GET['page'])
46    and preg_match('/^[a-z_]*$/', $_GET['page'])
47  )
48{
49  $help_content =
50    load_language('help/'.$_GET['page'].'.html', '', array('return'=>true) );
51
52  if ($help_content == false)
53  {
54    $help_content = '';
55  }
56
57  $help_content = trigger_event(
58    'get_popup_help_content', $help_content, $_GET['page']);
59}
60else
61{
62  die('Hacking attempt!');
63}
64
65$template->set_filename('popuphelp','popuphelp.tpl');
66
67$template->assign(
68  array
69  (
70    'HELP_CONTENT' => $help_content
71  ));
72
73// +-----------------------------------------------------------------------+
74// |                           html code display                           |
75// +-----------------------------------------------------------------------+
76
77$template->pparse('popuphelp');
78
79include(PHPWG_ROOT_PATH.'include/page_tail.php');
80
81?>
Note: See TracBrowser for help on using the repository browser.