source: branches/1.7/popuphelp.php @ 11558

Last change on this file since 11558 was 2137, checked in by rvelices, 17 years ago
  • fix plugin menu link broken with xamp (realpath behaves differently) (merge from trunk to branch 1_7)
  • added some meta_robots (noindex and nofollow) on popuphelp, search_rules and search seaction (googlebot gets crazy)
  • 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-2007 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | file          : $Id: popuphelp.php 2137 2007-10-16 01:45:26Z rvelices $
8// | last update   : $Date: 2007-10-16 01:45:26 +0000 (Tue, 16 Oct 2007) $
9// | last modifier : $Author: rvelices $
10// | revision      : $Revision: 2137 $
11// +-----------------------------------------------------------------------+
12// | This program is free software; you can redistribute it and/or modify  |
13// | it under the terms of the GNU General Public License as published by  |
14// | the Free Software Foundation                                          |
15// |                                                                       |
16// | This program is distributed in the hope that it will be useful, but   |
17// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
18// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
19// | General Public License for more details.                              |
20// |                                                                       |
21// | You should have received a copy of the GNU General Public License     |
22// | along with this program; if not, write to the Free Software           |
23// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
24// | USA.                                                                  |
25// +-----------------------------------------------------------------------+
26
27// +-----------------------------------------------------------------------+
28// |                           initialization                              |
29// +-----------------------------------------------------------------------+
30
31define('PHPWG_ROOT_PATH','./');
32include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
33
34// +-----------------------------------------------------------------------+
35// | Check Access and exit when user status is not ok                      |
36// +-----------------------------------------------------------------------+
37check_status(ACCESS_GUEST);
38
39$page['body_id'] = 'thePopuphelpPage';
40$title = l10n('PhpWebGallery Help');
41$page['page_banner'] = '<h1>'.$title.'</h1>';
42$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
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    @file_get_contents(get_language_filepath('help/'.$_GET['page'].'.html'));
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.