mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
Text and images for Transactional System
This commit is contained in:
parent
50a8cc98e4
commit
c949a7eef5
@ -26,7 +26,9 @@ ui_require_css_file ('firts_task');
|
||||
</div>
|
||||
<div class="text_task">
|
||||
<h3> <?php echo __('Create Transactions'); ?></h3>
|
||||
<p id="description_task"> <?php echo __("Text."); ?></p>
|
||||
<p id="description_task"> <?php echo __("The new transactional server allows you to execute tasks dependent on the others following a user-defined design. This means that it is possible to coordinate several executions to check a target at a given time.
|
||||
|
||||
Transaction graphs represent the different processes within our infrastructure that we use to deliver our service."); ?></p>
|
||||
<form action="index.php?sec=network&sec2=enterprise/operation/agentes/manage_transmap_creation&create_transaction=1" method="post">
|
||||
<input type="submit" class="button_task" value="<?php echo __('Create Transactions'); ?>" />
|
||||
</form>
|
||||
|
BIN
pandora_console/images/transactional_map.png
Normal file
BIN
pandora_console/images/transactional_map.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 556 B |
BIN
pandora_console/images/transactional_map_white.png
Normal file
BIN
pandora_console/images/transactional_map_white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 443 B |
@ -347,6 +347,7 @@ define('SERVER_TYPE_EVENT', 10);
|
||||
define('SERVER_TYPE_ENTERPRISE_ICMP', 11);
|
||||
define('SERVER_TYPE_ENTERPRISE_SNMP', 12);
|
||||
define('SERVER_TYPE_ENTERPRISE_SATELLITE', 13);
|
||||
define('SERVER_TYPE_ENTERPRISE_TRANSACTIONAL', 14);
|
||||
|
||||
/* REPORTS */
|
||||
define('REPORT_TOP_N_MAX', 1);
|
||||
|
@ -429,6 +429,11 @@ function servers_get_info ($id_server = -1) {
|
||||
$server["type"] = "enterprise satellite";
|
||||
$id_modulo = 0;
|
||||
break;
|
||||
case SERVER_TYPE_ENTERPRISE_TRANSACTIONAL:
|
||||
$server["img"] = html_print_image ("images/transactional_map.png", true, array ("title" => __('Enterprise Transactional server')));
|
||||
$server["type"] = "enterprise transactional";
|
||||
$id_modulo = 0;
|
||||
break;
|
||||
default:
|
||||
$server["img"] = '';
|
||||
$server["type"] = "unknown";
|
||||
|
Loading…
x
Reference in New Issue
Block a user