source: trunk/popuphelp.php @ 4423

Last change on this file since 4423 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
RevLine 
[858]1<?php
2// +-----------------------------------------------------------------------+
[2297]3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
[3049]5// | Copyright(C) 2008-2009 Piwigo Team                  http://piwigo.org |
[2297]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// +-----------------------------------------------------------------------+
[858]23
24// +-----------------------------------------------------------------------+
25// |                           initialization                              |
26// +-----------------------------------------------------------------------+
27
28define('PHPWG_ROOT_PATH','./');
29include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
30
[1072]31// +-----------------------------------------------------------------------+
32// | Check Access and exit when user status is not ok                      |
33// +-----------------------------------------------------------------------+
34check_status(ACCESS_GUEST);
35
[858]36$page['body_id'] = 'thePopuphelpPage';
[2342]37$title = l10n('Piwigo Help');
[1071]38$page['page_banner'] = '<h1>'.$title.'</h1>';
[2138]39$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
[858]40include(PHPWG_ROOT_PATH.'include/page_header.php');
41
[2126]42if
[1699]43  (
44    isset($_GET['page'])
45    and preg_match('/^[a-z_]*$/', $_GET['page'])
46  )
47{
48  $help_content =
[2479]49    load_language('help/'.$_GET['page'].'.html', '', array('return'=>true) );
[879]50
[1699]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
[2223]64$template->set_filename('popuphelp','popuphelp.tpl');
[858]65
[2223]66$template->assign(
[1699]67  array
68  (
69    'HELP_CONTENT' => $help_content
70  ));
[858]71
72// +-----------------------------------------------------------------------+
73// |                           html code display                           |
74// +-----------------------------------------------------------------------+
75
[2223]76$template->pparse('popuphelp');
[858]77
78include(PHPWG_ROOT_PATH.'include/page_tail.php');
[1699]79
[858]80?>
Note: See TracBrowser for help on using the repository browser.