Alerts
This commit is contained in:
commit
dbd565fd1d
|
@ -377,17 +377,17 @@ function mainAgentsModules()
|
|||
|
||||
$fullscreen['text'] = '<a href="index.php?extension_in_menu=estado&sec=extensions&sec2=extensions/agents_modules&pure=1&
|
||||
offset='.$offset.'&group_id='.$group_id.'&modulegroup='.$modulegroup.'&refresh='.$refr.'&full_modules_selected='.$full_modules.'&show_type='.$show_type.'
|
||||
&full_agents_id='.$full_agents.'&selection_agent_module='.$selection_a_m.'">'.html_print_image('images/full_screen.png', true, ['title' => __('Full screen mode'), 'class' => 'invert_filter']).'</a>';
|
||||
&full_agents_id='.$full_agents.'&selection_agent_module='.$selection_a_m.'">'.html_print_image('images/fullscreen@svg.svg', true, ['title' => __('Full screen mode'), 'class' => 'invert_filter']).'</a>';
|
||||
} else if ($full_modules_selected[0] && $full_agents_id[0]) {
|
||||
$full_modules = urlencode(implode(';', $full_modules_selected));
|
||||
$full_agents = urlencode(implode(';', $full_agents_id));
|
||||
|
||||
$fullscreen['text'] = '<a href="index.php?extension_in_menu=estado&sec=extensions&sec2=extensions/agents_modules&pure=1&
|
||||
offset='.$offset.'&group_id='.$group_id.'&modulegroup='.$modulegroup.'&refresh='.$refr.'&full_modules_selected='.$full_modules.'&show_type='.$show_type.'
|
||||
&full_agents_id='.$full_agents.'&selection_agent_module='.$selection_a_m.'">'.html_print_image('images/full_screen.png', true, ['title' => __('Full screen mode'), 'class' => 'invert_filter']).'</a>';
|
||||
&full_agents_id='.$full_agents.'&selection_agent_module='.$selection_a_m.'">'.html_print_image('images/fullscreen@svg.svg', true, ['title' => __('Full screen mode'), 'class' => 'invert_filter']).'</a>';
|
||||
} else {
|
||||
$fullscreen['text'] = '<a href="index.php?extension_in_menu=estado&sec=extensions&sec2=extensions/agents_modules&pure=1&
|
||||
offset='.$offset.'&group_id='.$group_id.'&modulegroup='.$modulegroup.'&refresh='.$refr.'&show_type='.$show_type.'">'.html_print_image('images/full_screen.png', true, ['title' => __('Full screen mode'), 'class' => 'invert_filter']).'</a>';
|
||||
offset='.$offset.'&group_id='.$group_id.'&modulegroup='.$modulegroup.'&refresh='.$refr.'&show_type='.$show_type.'">'.html_print_image('images/fullscreen@svg.svg', true, ['title' => __('Full screen mode'), 'class' => 'invert_filter']).'</a>';
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -597,11 +597,11 @@ function mainAgentsModules()
|
|||
echo '<li class="nomn">';
|
||||
echo '<a target="_top" href="'.$url.'">';
|
||||
echo html_print_image(
|
||||
'images/normal_screen.png',
|
||||
'images/exit_fullscreen@svg.svg',
|
||||
true,
|
||||
[
|
||||
'title' => __('Back to normal mode'),
|
||||
'class' => 'invert_filter',
|
||||
'class' => 'main_menu_icon invert_filter',
|
||||
]
|
||||
);
|
||||
echo '</a>';
|
||||
|
|
|
@ -738,14 +738,7 @@ if ($tab == 'tree') {
|
|||
* Group tree view.
|
||||
*/
|
||||
|
||||
echo html_print_image(
|
||||
'images/spinner.gif',
|
||||
true,
|
||||
[
|
||||
'class' => 'loading_tree',
|
||||
'style' => 'display: none;',
|
||||
]
|
||||
);
|
||||
ui_print_spinner(__('Loading'));
|
||||
echo "<div id='tree-controller-recipient'></div>";
|
||||
} else {
|
||||
/*
|
||||
|
@ -1042,7 +1035,7 @@ $tab = 'group_edition';
|
|||
if (typeof treeController.recipient != 'undefined' && treeController.recipient.length > 0)
|
||||
treeController.recipient.empty();
|
||||
|
||||
$(".loading_tree").show();
|
||||
showSpinner();
|
||||
|
||||
var parameters = {};
|
||||
parameters['page'] = "include/ajax/tree.ajax";
|
||||
|
@ -1066,7 +1059,7 @@ $tab = 'group_edition';
|
|||
data: parameters,
|
||||
success: function(data) {
|
||||
if (data.success) {
|
||||
$(".loading_tree").hide();
|
||||
hideSpinner();
|
||||
|
||||
treeController.init({
|
||||
recipient: $("div#tree-controller-recipient"),
|
||||
|
|
|
@ -949,30 +949,20 @@ html_print_action_buttons(
|
|||
?>
|
||||
<script type="text/javascript">
|
||||
$( document ).ready(function() {
|
||||
$('[id^=checkbox-delete_multiple]').change(function(){
|
||||
if($(this).parent().parent().hasClass('checkselected')){
|
||||
$(this).parent().parent().removeClass('checkselected');
|
||||
}
|
||||
else{
|
||||
$(this).parent().parent().addClass('checkselected');
|
||||
$('[id^=checkbox-delete_multiple]').click(function(){
|
||||
if($(this).prop("checked") === false ){
|
||||
$(this).prop("checked", false);
|
||||
} else {
|
||||
$(this).prop("checked", true);
|
||||
}
|
||||
});
|
||||
|
||||
$('[id^=checkbox-all_delete]').change(function(){
|
||||
if ($("#checkbox-all_delete").prop("checked")) {
|
||||
$('[id^=checkbox-delete_multiple]')
|
||||
.parent()
|
||||
.parent()
|
||||
.addClass('checkselected');
|
||||
$(".check_delete")
|
||||
.prop("checked", true);
|
||||
$('#checkbox-all_delete').click(function(){
|
||||
if ($("#checkbox-all_delete").prop("checked") === true) {
|
||||
$("[id^=checkbox-delete_multiple]").prop("checked", true);
|
||||
}
|
||||
else{
|
||||
$('[id^=checkbox-delete_multiple]')
|
||||
.parent()
|
||||
.parent()
|
||||
.removeClass('checkselected');
|
||||
$(".check_delete").prop("checked", false);
|
||||
$("[id^=checkbox-delete_multiple]").prop("checked", false);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
@ -366,43 +366,43 @@ if (is_metaconsole() === true) {
|
|||
|
||||
html_print_table($table);
|
||||
|
||||
html_print_input_hidden('id_component_type', $id_component_type);
|
||||
$buttons = html_print_input_hidden('id_component_type', $id_component_type);
|
||||
if ($id) {
|
||||
html_print_input_hidden('update_component', 1);
|
||||
html_print_input_hidden('id', $id);
|
||||
$buttons .= html_print_input_hidden('update_component', 1, true);
|
||||
$buttons .= html_print_input_hidden('id', $id, true);
|
||||
$buttonCaption = __('Update');
|
||||
$buttonIcon = 'update';
|
||||
$buttonName = 'upd';
|
||||
html_print_submit_button(__('Update'), 'upd', false, 'class="sub upd"');
|
||||
} else {
|
||||
html_print_input_hidden('create_component', 1);
|
||||
html_print_input_hidden('create_network_from_module', 0);
|
||||
$buttons .= html_print_input_hidden('create_component', 1, true);
|
||||
$buttons .= html_print_input_hidden('create_network_from_module', 0, true);
|
||||
$buttonCaption = __('Create');
|
||||
$buttonIcon = 'wand';
|
||||
$buttonName = 'crt';
|
||||
}
|
||||
|
||||
html_print_div(
|
||||
$buttons .= html_print_submit_button(
|
||||
$buttonCaption,
|
||||
$buttonName,
|
||||
false,
|
||||
['icon' => $buttonIcon],
|
||||
true
|
||||
);
|
||||
|
||||
$buttons .= html_print_button(
|
||||
__('Go back'),
|
||||
'go_back',
|
||||
false,
|
||||
'',
|
||||
[
|
||||
'class' => 'action-buttons',
|
||||
'content' => html_print_button(
|
||||
__('Go back'),
|
||||
'go_back',
|
||||
false,
|
||||
'',
|
||||
[
|
||||
'icon' => 'back',
|
||||
'mode' => 'secondary',
|
||||
],
|
||||
true
|
||||
).html_print_submit_button(
|
||||
$buttonCaption,
|
||||
$buttonName,
|
||||
false,
|
||||
['icon' => $buttonIcon],
|
||||
true
|
||||
),
|
||||
]
|
||||
'icon' => 'back',
|
||||
'mode' => 'secondary',
|
||||
],
|
||||
true
|
||||
);
|
||||
|
||||
html_print_action_buttons(
|
||||
$buttons
|
||||
);
|
||||
|
||||
echo '</form>';
|
||||
|
|
|
@ -2448,35 +2448,35 @@ function ui_print_session_action_icon($action, $return=false)
|
|||
global $config;
|
||||
|
||||
$key_icon = [
|
||||
'acl' => 'images/delete.png',
|
||||
'agent' => 'images/agent.png',
|
||||
'module' => 'images/module.png',
|
||||
'alert' => 'images/bell.png',
|
||||
'incident' => 'images/default_list.png',
|
||||
'logon' => 'images/house.png',
|
||||
'logoff' => 'images/house.png',
|
||||
'massive' => 'images/config.png',
|
||||
'hack' => 'images/application_edit.png',
|
||||
'event' => 'images/lightning_go.png',
|
||||
'policy' => 'images/policies_mc.png',
|
||||
'report' => 'images/reporting.png',
|
||||
'file collection' => 'images/collection_col.png',
|
||||
'user' => 'images/user_green.png',
|
||||
'password' => 'images/lock.png',
|
||||
'session' => 'images/heart_col.png',
|
||||
'snmp' => 'images/snmp.png',
|
||||
'command' => 'images/bell.png',
|
||||
'category' => 'images/category_col.png',
|
||||
'dashboard' => 'images/dashboard_col.png',
|
||||
'api' => 'images/eye.png',
|
||||
'db' => 'images/database.png',
|
||||
'setup' => 'images/cog.png',
|
||||
'acl' => 'images/delete.svg',
|
||||
'agent' => 'images/agents@svg.svg',
|
||||
'module' => 'images/modules@svg.svg',
|
||||
'alert' => 'images/alerts.svg',
|
||||
'incident' => 'images/logs@svg.svg',
|
||||
'logon' => 'images/house@svg.svg',
|
||||
'logoff' => 'images/house@svg.svg',
|
||||
'massive' => 'images/configuration@svg.svg',
|
||||
'hack' => 'images/custom-input@svg.svg',
|
||||
'event' => 'images/event.svg',
|
||||
'policy' => 'images/policy@svg.svg',
|
||||
'report' => 'images/agent-fields.svg',
|
||||
'file collection' => 'images/file-collection@svg.svg',
|
||||
'user' => 'images/user.svg',
|
||||
'password' => 'images/password.svg',
|
||||
'session' => 'images/star@svg.svg',
|
||||
'snmp' => 'images/SNMP-network-numeric-data@svg.svg',
|
||||
'command' => 'images/external-tools@svg.svg',
|
||||
'category' => 'images/tag@svg.svg',
|
||||
'dashboard' => 'images/workstation@groups.svg',
|
||||
'api' => 'images/enable.svg',
|
||||
'db' => 'images/data-server@svg.svg',
|
||||
'setup' => 'images/configuration@svg.svg',
|
||||
];
|
||||
|
||||
$output = '';
|
||||
foreach ($key_icon as $key => $icon) {
|
||||
if (stristr($action, $key) !== false) {
|
||||
$output = html_print_image($icon, true, ['title' => $action, 'class' => 'invert_filter'], false, false, false, true).' ';
|
||||
$output = html_print_image($icon, true, ['title' => $action, 'class' => 'main_menu_icon invert_filter'], false, false, false, true).' ';
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -131,7 +131,7 @@
|
|||
<div style='padding-bottom: 50px'>
|
||||
<?php
|
||||
$version = '7.0NG.769';
|
||||
$build = '230307';
|
||||
$build = '230228';
|
||||
$banner = "v$version Build $build";
|
||||
error_reporting(0);
|
||||
|
||||
|
|
|
@ -1141,7 +1141,7 @@ foreach ($agents as $agent) {
|
|||
$data[0] .= ui_print_help_tip(
|
||||
__('Agent in scheduled downtime'),
|
||||
true,
|
||||
'images/minireloj-16.png'
|
||||
'images/clock.svg'
|
||||
);
|
||||
$data[0] .= '</em>';
|
||||
}
|
||||
|
@ -1254,12 +1254,12 @@ foreach ($agents as $agent) {
|
|||
|
||||
$fb64 = base64_encode(json_encode($agent_event_filter));
|
||||
$data[11] = '<a href="index.php?sec=eventos&sec2=operation/events/events&fb64='.$fb64.'">'.html_print_image(
|
||||
'images/lightning.png',
|
||||
'images/event.svg',
|
||||
true,
|
||||
[
|
||||
'align' => 'middle',
|
||||
'title' => __('Agent events'),
|
||||
'class' => 'invert_filter',
|
||||
'class' => 'main_menu_icon invert_filter',
|
||||
]
|
||||
).'</a>';
|
||||
|
||||
|
|
|
@ -289,12 +289,12 @@ if (empty($result_groups) === false) {
|
|||
echo "<td class='group_view_data center vertical_middle'>";
|
||||
if (!isset($data['_is_tag_']) && check_acl($config['id_user'], $data['_id_'], 'AW')) {
|
||||
echo '<a href="index.php?sec=estado&sec2=operation/agentes/group_view&update_netgroup='.$data['_id_'].'">'.html_print_image(
|
||||
'images/target.png',
|
||||
'images/change-active.svg',
|
||||
true,
|
||||
[
|
||||
'border' => '0',
|
||||
'title' => __('Force'),
|
||||
'class' => 'invert_filter',
|
||||
'class' => 'main_menu_icon invert_filter',
|
||||
]
|
||||
).'</a>';
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
||||
*
|
||||
* ============================================================================
|
||||
* Copyright (c) 2005-2022 Artica Soluciones Tecnologicas
|
||||
* Copyright (c) 2005-2023 Artica Soluciones Tecnologicas
|
||||
* Please see http://pandorafms.org for full contribution list
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -64,11 +64,11 @@ if ($group_sent === true) {
|
|||
$is_ajax = is_ajax();
|
||||
if ($is_ajax === false && $pure === false) {
|
||||
$viewtab['config'] = '<a id="config" href="">'.html_print_image(
|
||||
'images/setup.png',
|
||||
'images/configuration@svg.svg',
|
||||
true,
|
||||
[
|
||||
'title' => __('Config'),
|
||||
'class' => 'invert_filter',
|
||||
'class' => 'main_menu_icon invert_filter',
|
||||
]
|
||||
).'</a>';
|
||||
|
||||
|
@ -81,11 +81,11 @@ if ($is_ajax === false && $pure === false) {
|
|||
);
|
||||
|
||||
$viewtab['full_screen'] = '<a id="full_screen" href="'.$url.'">'.html_print_image(
|
||||
'images/full_screen.png',
|
||||
'images/fullscreen@svg.svg',
|
||||
true,
|
||||
[
|
||||
'title' => __('Full screen'),
|
||||
'class' => 'invert_filter',
|
||||
'class' => 'main_menu_icon invert_filter',
|
||||
]
|
||||
).'</a>';
|
||||
|
||||
|
@ -208,11 +208,11 @@ if ($is_ajax === false && $pure === true) {
|
|||
|
||||
echo '<a href="'.$urlNoFull.'">';
|
||||
echo html_print_image(
|
||||
'images/normal_screen.png',
|
||||
'images/exit_fullscreen@svg.svg',
|
||||
true,
|
||||
[
|
||||
'title' => __('Back to normal mode'),
|
||||
'class' => 'invert_filter',
|
||||
'class' => 'main_menu_icon invert_filter',
|
||||
]
|
||||
);
|
||||
echo '</a>';
|
||||
|
|
Loading…
Reference in New Issue