Skip to content
Snippets Groups Projects
Commit 70e890ed authored by vogelor's avatar vogelor
Browse files

moved the system-log and the jobqueue to the monitor.

parent a11603bb
No related branches found
No related tags found
No related merge requests found
Showing
with 3 additions and 11 deletions
...@@ -64,14 +64,6 @@ $items[] = array( 'title' => 'Edit Server IP', ...@@ -64,14 +64,6 @@ $items[] = array( 'title' => 'Edit Server IP',
'target' => 'content', 'target' => 'content',
'link' => 'admin/server_ip_list.php'); 'link' => 'admin/server_ip_list.php');
$items[] = array( 'title' => 'Jobqueue',
'target' => 'content',
'link' => 'admin/datalog_list.php');
$items[] = array( 'title' => 'Log',
'target' => 'content',
'link' => 'admin/log_list.php');
$module['nav'][] = array( 'title' => 'Servers', $module['nav'][] = array( 'title' => 'Servers',
'open' => 1, 'open' => 1,
'items' => $items); 'items' => $items);
......
...@@ -43,7 +43,7 @@ require_once('../../lib/config.inc.php'); ...@@ -43,7 +43,7 @@ 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('monitor');
$app->uses("tform_actions"); $app->uses("tform_actions");
$app->tform_actions->onDelete(); $app->tform_actions->onDelete();
......
...@@ -42,10 +42,10 @@ $list_def_file = "list/datalog.list.php"; ...@@ -42,10 +42,10 @@ $list_def_file = "list/datalog.list.php";
******************************************/ ******************************************/
//* Check permissions for module //* Check permissions for module
$app->auth->check_module_permissions('admin'); $app->auth->check_module_permissions('monitor');
$app->uses('listform_actions'); $app->uses('listform_actions');
//$app->listform_actions->SQLExtWhere = "wb = 'W'"; $app->listform_actions->SQLExtWhere = "server_id != 0";
$app->listform_actions->SQLOrderBy = "ORDER BY tstamp DESC, datalog_id DESC"; $app->listform_actions->SQLOrderBy = "ORDER BY tstamp DESC, datalog_id DESC";
$app->listform_actions->onLoad(); $app->listform_actions->onLoad();
......
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