mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-25 10:49:58 +03:00
66 lines
No EOL
2.1 KiB
PHP
66 lines
No EOL
2.1 KiB
PHP
<?php
|
|
// +-----------------------------------------------------------------------+
|
|
// | This file is part of Piwigo. |
|
|
// | |
|
|
// | For copyright and license information, please view the COPYING.txt |
|
|
// | file that was distributed with this source code. |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | initialization |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
define('PHPWG_ROOT_PATH','./');
|
|
define('PWG_HELP', true);
|
|
include_once( PHPWG_ROOT_PATH.'include/common.inc.php' );
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Check Access and exit when user status is not ok |
|
|
// +-----------------------------------------------------------------------+
|
|
check_status(ACCESS_GUEST);
|
|
|
|
$page['body_id'] = 'thePopuphelpPage';
|
|
$title = l10n('Piwigo Help');
|
|
$page['page_banner'] = '';
|
|
$page['meta_robots']=array('noindex'=>1, 'nofollow'=>1);
|
|
include(PHPWG_ROOT_PATH.'include/page_header.php');
|
|
|
|
if
|
|
(
|
|
isset($_GET['page'])
|
|
and preg_match('/^[a-z_]*$/', $_GET['page'])
|
|
)
|
|
{
|
|
$help_content =
|
|
load_language('help/'.$_GET['page'].'.html', '', array('return'=>true) );
|
|
|
|
if ($help_content == false)
|
|
{
|
|
$help_content = '';
|
|
}
|
|
|
|
$help_content = trigger_change(
|
|
'get_popup_help_content', $help_content, $_GET['page']);
|
|
}
|
|
else
|
|
{
|
|
die('Hacking attempt!');
|
|
}
|
|
|
|
$template->set_filename('popuphelp','popuphelp.tpl');
|
|
|
|
$template->assign(
|
|
array
|
|
(
|
|
'HELP_CONTENT' => $help_content
|
|
));
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | html code display |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
$template->pparse('popuphelp');
|
|
|
|
include(PHPWG_ROOT_PATH.'include/page_tail.php');
|
|
|
|
?>
|