%PDF- %PDF-
Direktori : /var/www/projetos/suporte.iigd.com.br/plugins/dashboard/front/graphs/ |
Current File : /var/www/projetos/suporte.iigd.com.br/plugins/dashboard/front/graphs/times.php |
<?php include ("../../../../inc/includes.php"); include ("../../../../inc/config.php"); Session::checkLoginUser(); Session::checkRight("profile", READ); $mydate = isset($_POST["date1"]) ? $_POST["date1"] : ""; ?> <html> <head> <title>GLPI - <?php echo __('Tickets across time','dashboard'); ?></title> <!-- <base href= "<?php $_SERVER['SERVER_NAME'] ?>" > --> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> <meta http-equiv="content-language" content="en-us" /> <link rel="icon" href="../img/dash.ico" type="image/x-icon" /> <link rel="shortcut icon" href="../img/dash.ico" type="image/x-icon" /> <link href="../css/styles.css" rel="stylesheet" type="text/css" /> <link href="../css/bootstrap.css" rel="stylesheet" type="text/css" /> <link href="../css/bootstrap-responsive.css" rel="stylesheet" type="text/css" /> <link href="../css/font-awesome.css" type="text/css" rel="stylesheet" /> <link href="../css/datepicker.css" rel="stylesheet" type="text/css"> <script type="text/javascript" src="../js/jquery.min.js"></script> <script src="../js/jquery-ui.min.js"></script> <script src="../js/highcharts.js"></script> <script src="../js/modules/exporting.js"></script> <script src="../js/bootstrap-datepicker.js"></script> <?php echo '<link rel="stylesheet" type="text/css" href="../css/style-'.$_SESSION['style'].'">'; ?> <?php echo '<script src="../js/themes/'.$_SESSION['charts_colors'].'"></script>'; ?> </head> <body style="background-color: #e5e5e5; margin-left:0%;"> <?php if(!empty($_POST['submit'])) { $data_ini = $_POST['date1']; $data_fin = $_POST['date2']; } else { $data_ini = date("Y-01-01"); $data_fin = date("Y-m-d"); } $month = date("Y-m"); $datahoje = date("Y-m-d"); # entity $sql_e = "SELECT value FROM glpi_plugin_dashboard_config WHERE name = 'entity' AND users_id = ".$_SESSION['glpiID'].""; $result_e = $DB->query($sql_e); $sel_ent = $DB->result($result_e,0,'value'); if($sel_ent == '' || $sel_ent == -1) { //get user entities //$entities = Profile_User::getUserEntities($_SESSION['glpiID'], true); $entities = $_SESSION['glpiactiveentities']; $ent = implode(",",$entities); $entidade = "AND glpi_tickets.entities_id IN (".$ent.")"; } else { $entidade = "AND glpi_tickets.entities_id IN (".$sel_ent.")"; } ?> <div id='content' > <div id='container-fluid' style="margin: 0px 5% 0px 5%;"> <div id="charts" class="fluid chart"> <div id="head" class="fluid"> <a href="../index.php"><i class="fa fa-home" style="font-size:14pt;"></i><span></span></a> <div id="titulo_graf"> <?php echo __('Tickets across time','dashboard') ; ?> <div id="datas" class="col-md-12" > <form id="form1" name="form1" class="form1" method="post" action="?date1=<?php echo $data_ini ?>&date2=<?php echo $data_fin ?>"> <table border="0" cellspacing="0" cellpadding="0"> <tr> <td style="width: 300px;"> <?php echo' <table style="margin-top:6px;" border=0> <tr> <td> <div class="input-group date" id="dp1" data-date="'.$data_ini.'" data-date-format="yyyy-mm-dd"> <input class="col-md-9 form-control" size="13" type="text" name="date1" value="'.$data_ini.'" > <span class="input-group-addon add-on"><i class="fa fa-calendar"></i></span> </div> </td> <td> </td> <td> <div class="input-group date" id="dp2" data-date="'.$data_fin.'" data-date-format="yyyy-mm-dd"> <input class="col-md-9 form-control" size="13" type="text" name="date2" value="'.$data_fin.'" > <span class="input-group-addon add-on"><i class="fa fa-calendar"></i></span> </div> </td> <td> </td> </tr> </table> '; ?> <script language="Javascript"> $('#dp1').datepicker('update'); $('#dp2').datepicker('update'); </script> </td> <td style="margin-top:2px;"> </tr> <tr height="12px" ><td></td></tr> <tr align="center"> <td> <button class="btn btn-primary btn-sm" type="submit" name="submit" value="Atualizar" ><i class="fa fa-search"></i> <?php echo __('Consult','dashboard'); ?> </button> <button class="btn btn-primary btn-sm" type="button" name="Limpar" value="Limpar" onclick="location.href='times.php'" ><i class="fa fa-trash-o"></i> <?php echo __('Clean','dashboard'); ?> </button> </td> </tr> </table> <p> </p> <?php Html::closeForm(); ?> </div> </div> </div> <div id="graf_hour" class="col-md-12"> <?php include ("./inc/grafbar_ticket_hour.inc.php"); ?> </div> <div id="grafday" class="col-md-12" style="margin-top: 30px;"> <?php include ("./inc/grafbar_ticket_day.inc.php"); ?> </div> <div id="grafmonth" class="col-md-12" style="margin-top: 35px;"> <?php include ("./inc/grafbar_ticket_month.inc.php"); ?> </div> </div> </div> </div> <!-- Highcharts export xls, csv --> <script src="../js/export-csv.js"></script> </body> </html>