guardo cambios

This commit is contained in:
marcos.alconada 2019-06-11 10:01:51 +02:00
parent 1ee347684e
commit 738958386a
2 changed files with 18 additions and 4 deletions

View File

@ -69,7 +69,7 @@ $table->data[0][10] = html_print_image('images/reporting.png', true, ['title' =>
$table->data[0][11] = "<a href='index.php?search_category=reports&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalReports).'</a>';
$table->data[0][12] = html_print_image('images/visual_console_green.png', true, ['title' => __('Maps found')]);
$table->data[0][13] = "<a href='index.php?search_category=maps&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalMaps).'</a>';
if (enterprise_installed()) {
if (enterprise_installed() || is_metaconsole()) {
$table->data[0][14] = html_print_image('images/policies.png', true, ['title' => __('Policies')]);
$table->data[0][15] = "<a href='index.php?search_category=policies&keywords=".$config['search_keywords']."&head_search_keywords=Search'>".sprintf(__('%s Found'), $totalPolicies).'</a>';
}

View File

@ -177,19 +177,33 @@ if ($searchpolicies == 0) {
}
$sql .= ' LIMIT '.$config['block_size'].' OFFSET '.get_parameter('offset', 0);
$sql .= ' LIMIT '.$config['block_size'].' OFFSET '.get_parameter('offset', 0);
$policies = db_process_sql($sql);
$sql = "SELECT id_grupo FROM tusuario_perfil
WHERE id_usuario LIKE '%".$config['id_user']."%'";
$groups_for_search = db_process_sql($sql);
foreach ($policies as $p) {
foreach ($groups_for_search as $group) {
if ($p['id_group'] == $group['id_grupo'] || $group['id_grupo'] == 0) {
$policies_final = $p;
}
}
}
$policies = $policies_final;
if ($policies !== false) {
if ($only_count) {
unset($policies);
}
$sql = "SELECT COUNT(id) AS count FROM tpolicies
WHERE name LIKE '%".$stringSearchSQL."%' OR
description LIKE '%".$stringSearchSQL."%'";
WHERE id = '".$policies_final['id']."'";
$totalPolicies = db_get_value_sql($sql);