Skip to content
Snippets Groups Projects
Commit 6d826cf0 authored by Falko Timme's avatar Falko Timme
Browse files

- Fixed #1799.

parent 305b98ec
No related branches found
No related tags found
No related merge requests found
...@@ -10,10 +10,15 @@ $module['title'] = 'top_menu_help'; ...@@ -10,10 +10,15 @@ $module['title'] = 'top_menu_help';
$module['template'] = 'module.tpl.htm'; $module['template'] = 'module.tpl.htm';
//* The page that is displayed when the module is loaded. the path must is relative to the web directory //* The page that is displayed when the module is loaded. the path must is relative to the web directory
if(isset($_GET['go2_faq_sections_list'])) if(isset($_GET['go2_faq_sections_list'])){
$module['startpage'] = 'help/faq_sections_list.php'; $module['startpage'] = 'help/faq_sections_list.php';
else } else {
$module['startpage'] = 'help/version.php'; if($_SESSION['s']['user']['typ'] == 'admin') {
$module['startpage'] = 'help/version.php';
} else {
$module['startpage'] = 'help/support_message_list.php';
}
}
//* The width of the tab. Normally you should leave this empty and let the browser define the width automatically. //* The width of the tab. Normally you should leave this empty and let the browser define the width automatically.
$module['tab_width'] = ''; $module['tab_width'] = '';
...@@ -52,24 +57,28 @@ if($_SESSION['s']['user']['typ'] == 'admin') { ...@@ -52,24 +57,28 @@ if($_SESSION['s']['user']['typ'] == 'admin') {
$itemsfaq[] = array( 'title' => 'Manage Sections', $itemsfaq[] = array( 'title' => 'Manage Sections',
'target' => 'content', 'target' => 'content',
'link' => 'help/faq_sections_list.php'); 'link' => 'help/faq_sections_list.php');
$module['nav'][] = array( 'title' => 'FAQ',
'open' => 1,
'items' => $itemsfaq);
} }
else else
{ //* the user { //* the user
$sql = "SELECT * FROM help_faq_sections"; $sql = "SELECT * FROM help_faq_sections";
$res = $app->db->queryAllRecords($sql); $res = $app->db->queryAllRecords($sql);
//* all the content sections //* all the content sections
if(is_array($res)) { if(is_array($res) && !empty($res)) {
foreach($res as $v) { foreach($res as $v) {
$itemsfaq[] = array( 'title' => $v['hfs_name'], $itemsfaq[] = array( 'title' => $v['hfs_name'],
'target' => 'content', 'target' => 'content',
'link' => 'help/faq_list.php?hfs_id='.$v['hfs_id']); 'link' => 'help/faq_list.php?hfs_id='.$v['hfs_id']);
} }
// Display 'FAQ' menu only if there are sections
$module['nav'][] = array( 'title' => 'FAQ',
'open' => 1,
'items' => $itemsfaq);
} }
} }
$module['nav'][] = array( 'title' => 'FAQ',
'open' => 1,
'items' => $itemsfaq);
//* -- end of the FAQ menu section //* -- end of the FAQ menu section
......
...@@ -43,8 +43,10 @@ require_once('../../lib/config.inc.php'); ...@@ -43,8 +43,10 @@ require_once('../../lib/config.inc.php');
require_once('../../lib/app.inc.php'); require_once('../../lib/app.inc.php');
//* Check permissions for module //* Check permissions for module
$app->auth->check_module_permissions('admin'); $app->auth->check_module_permissions('help');
echo '<p>&nbsp;</p><p>&nbsp;</p><p class="frmTextHead" style="text-align:center;">'.$app->lng('ISPConfig Version:').' '.ISPC_APP_VERSION.'</p>'; if($_SESSION['s']['user']['typ'] == 'admin') {
echo '<p>&nbsp;</p><p>&nbsp;</p><p class="frmTextHead" style="text-align:center;">'.$app->lng('ISPConfig Version:').' '.ISPC_APP_VERSION.'</p>';
}
?> ?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment