mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 09:15:15 +02:00
Merge branch '1134-url-routes-analyzer-feature-dev' into 'develop'
1134 url routes analyzer feature dev See merge request !870
This commit is contained in:
commit
82f8b333d5
BIN
pandora_console/images/analizador-rutas.png
Normal file
BIN
pandora_console/images/analizador-rutas.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 482 B |
@ -4299,4 +4299,28 @@ div#footer_help{
|
|||||||
.pagination_show_more{
|
.pagination_show_more{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dashed{
|
||||||
|
stroke-dasharray: 10;
|
||||||
|
|
||||||
|
}
|
||||||
|
.path {
|
||||||
|
stroke-dasharray: 500;
|
||||||
|
stroke-dashoffset: 500;
|
||||||
|
animation: dash 15s linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes dash {
|
||||||
|
from {
|
||||||
|
stroke-dashoffset: 500;
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
stroke-dashoffset: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.route {
|
||||||
|
fill: none;
|
||||||
|
transition: all 2s ease-in-out;
|
||||||
|
}
|
||||||
|
@ -1055,6 +1055,14 @@ if($modules_wux){
|
|||||||
$wux_console_tab = "";
|
$wux_console_tab = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$url_route_analyzer = enterprise_hook('get_url_route_analyzer_modules', array($id_agente));
|
||||||
|
if ($url_route_analyzer) {
|
||||||
|
$url_route_analyzer_tab = enterprise_hook('url_route_analyzer_tab');
|
||||||
|
if ($url_route_analyzer_tab == -1) {
|
||||||
|
$url_route_analyzer_tab = "";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* GIS tab */
|
/* GIS tab */
|
||||||
$gistab="";
|
$gistab="";
|
||||||
if ($config['activate_gis']) {
|
if ($config['activate_gis']) {
|
||||||
@ -1186,7 +1194,8 @@ $onheader = array('manage' => $managetab,
|
|||||||
'graphs' => $graphs,
|
'graphs' => $graphs,
|
||||||
'policy' => $policyTab,
|
'policy' => $policyTab,
|
||||||
'ux_console' => $ux_console_tab,
|
'ux_console' => $ux_console_tab,
|
||||||
'wux_console' => $wux_console_tab);
|
'wux_console' => $wux_console_tab,
|
||||||
|
'url_route_analyzer' => $url_route_analyzer_tab);
|
||||||
|
|
||||||
//Added after it exists
|
//Added after it exists
|
||||||
// If the agent has incidents associated
|
// If the agent has incidents associated
|
||||||
@ -1307,7 +1316,10 @@ switch ($tab) {
|
|||||||
enterprise_include ("operation/agentes/ux_console_view.php");
|
enterprise_include ("operation/agentes/ux_console_view.php");
|
||||||
break;
|
break;
|
||||||
case "wux_console_tab":
|
case "wux_console_tab":
|
||||||
enterprise_include ("operation/agentes/wux_console_view.php");
|
enterprise_include ("operation/agentes/wux_console_vpiew.php");
|
||||||
|
break;
|
||||||
|
case "url_route_analyzer_tab":
|
||||||
|
enterprise_include ("operation/agentes/url_route_analyzer.php");
|
||||||
break;
|
break;
|
||||||
case "graphs";
|
case "graphs";
|
||||||
require("operation/agentes/graphs.php");
|
require("operation/agentes/graphs.php");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user