[858] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
| 3 | // | PhpWebGallery - a PHP based picture gallery | |
---|
| 4 | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | |
---|
[2137] | 5 | // | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | |
---|
[858] | 6 | // +-----------------------------------------------------------------------+ |
---|
[2137] | 7 | // | file : $Id: popuphelp.php 2137 2007-10-16 01:45:26Z rvelices $ |
---|
[858] | 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 | |
---|
| 31 | define('PHPWG_ROOT_PATH','./'); |
---|
| 32 | include_once( PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
| 33 | |
---|
[1072] | 34 | // +-----------------------------------------------------------------------+ |
---|
| 35 | // | Check Access and exit when user status is not ok | |
---|
| 36 | // +-----------------------------------------------------------------------+ |
---|
| 37 | check_status(ACCESS_GUEST); |
---|
| 38 | |
---|
[858] | 39 | $page['body_id'] = 'thePopuphelpPage'; |
---|
[1071] | 40 | $title = l10n('PhpWebGallery Help'); |
---|
| 41 | $page['page_banner'] = '<h1>'.$title.'</h1>'; |
---|
[2137] | 42 | $page['meta_robots']=array('noindex'=>1, 'nofollow'=>1); |
---|
[858] | 43 | include(PHPWG_ROOT_PATH.'include/page_header.php'); |
---|
| 44 | |
---|
[2137] | 45 | if |
---|
[1699] | 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')); |
---|
[879] | 53 | |
---|
[1699] | 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 | } |
---|
| 62 | else |
---|
| 63 | { |
---|
| 64 | die('Hacking attempt!'); |
---|
| 65 | } |
---|
| 66 | |
---|
[858] | 67 | $template->set_filenames(array('popuphelp' => 'popuphelp.tpl')); |
---|
| 68 | |
---|
[1699] | 69 | $template->assign_vars( |
---|
| 70 | array |
---|
| 71 | ( |
---|
| 72 | 'HELP_CONTENT' => $help_content |
---|
| 73 | )); |
---|
[858] | 74 | |
---|
| 75 | // +-----------------------------------------------------------------------+ |
---|
| 76 | // | html code display | |
---|
| 77 | // +-----------------------------------------------------------------------+ |
---|
| 78 | |
---|
| 79 | $template->parse('popuphelp'); |
---|
| 80 | |
---|
| 81 | include(PHPWG_ROOT_PATH.'include/page_tail.php'); |
---|
[1699] | 82 | |
---|
[858] | 83 | ?> |
---|