mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-26 19:29:58 +03:00
54 lines
1.8 KiB
PHP
54 lines
1.8 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. |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
|
|
include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | Check Access and exit when user status is not ok |
|
|
// +-----------------------------------------------------------------------+
|
|
check_status(ACCESS_ADMINISTRATOR);
|
|
|
|
$help_link = get_root_url().'admin.php?page=help§ion=';
|
|
$selected = null;
|
|
|
|
if (!isset($_GET['section']))
|
|
{
|
|
$selected = 'add_photos';
|
|
}
|
|
else
|
|
{
|
|
$selected = $_GET['section'];
|
|
}
|
|
|
|
$tabsheet = new tabsheet();
|
|
$tabsheet->set_id('help');
|
|
$tabsheet->select($selected);
|
|
$tabsheet->assign();
|
|
|
|
trigger_notify('loc_end_help');
|
|
|
|
$template->set_filenames(array('help' => 'help.tpl'));
|
|
|
|
$template->assign(
|
|
array(
|
|
'HELP_CONTENT' => load_language(
|
|
'help/help_'.$tabsheet->selected.'.html',
|
|
'',
|
|
array('return'=>true)
|
|
),
|
|
'HELP_SECTION_TITLE' => $tabsheet->sheets[ $tabsheet->selected ]['caption'],
|
|
)
|
|
);
|
|
|
|
// +-----------------------------------------------------------------------+
|
|
// | sending html code |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
$template->assign_var_from_handle('ADMIN_CONTENT', 'help');
|
|
?>
|