-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtickets.php
More file actions
79 lines (63 loc) · 3.07 KB
/
tickets.php
File metadata and controls
79 lines (63 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?php
#################################################################
## WHMX Billing system for cPanel / WHM ##
##-------------------------------------------------------------##
## Version: 1.00 - ENVATO MARKET ##
##-------------------------------------------------------------##
## Author: Gianck Luiz obviosistemas@gmail.com ##
##-------------------------------------------------------------##
## Copyright ©2016 . All rights reserved. ##
##-------------------------------------------------------------##
#################################################################
session_start();
ob_start();
require_once("adm/config/conexao.class.php");
require_once("adm/config/crud.class.php");
require_once("adm/config/mega.class.php");
include_once("adm/config/common.php"); // Language
$con = new conexao();
$con->connect();
$dbconfig = mysql_query("SELECT * FROM config WHERE id = '1'");
$config = mysql_fetch_array($dbconfig);
$thema = $config['thema'];
use megaphp\view\MVC;
$tpl = new MVC("theme/$thema/tickets.html");
$tpl->addFile("NAVBAR", "theme/$thema/inc/navbar.html");
$tpl->addFile("DEMO", "theme/$thema/inc/demo.html");
$tpl->addFile("FOOTER", "theme/$thema/inc/footer.html");
// SESSION FOR ACCOUNTS
//LOGADO
if ( !isset($_SESSION['id']) ){
echo "<script>
window.location = 'login.php';
</script>";
$tpl->block("BLOCK_NAO_LOGADO");
} else {
$idbase = $_SESSION['id'];
$cslogin = mysql_query("SELECT * FROM customers WHERE id = + $idbase");
$logado = mysql_fetch_array($cslogin);
$tpl->USER_NAME = $logado['name'];
$tpl->block("CHAT_LOGIN");
$tpl->block("BLOCK_LOGADO");
}
$id_customer = $logado['id'];
$querydtk = mysql_query("SELECT p.*, c.name AS name, c.email AS email, d.name_department AS name_department FROM tickets AS p INNER JOIN customers AS c ON p.customer = c.id INNER JOIN departments AS d ON p.department = d.id WHERE p.customer = '$id_customer' order by p.id DESC LIMIT 30");
while($tkm = mysql_fetch_array($querydtk)){
$tpl->TICKET_ID = base64_encode($tkm['id']);
$tpl->TICKET_TPK = $tkm['tpk'];
$tpl->TICKET_SUBJECT = limitText($tkm['subject'],70);
$tpl->TICKET_DEPARTMENT = $tkm['name_department'];
$tpl->TICKET_DATE = data_en($tkm['date']);
if($tkm['status'] == '1') { $tpl->STATUS = '<span class="label label-success">OPEN</span>'; }
if($tkm['status'] == '2') { $tpl->STATUS = '<span class="label label-warning">ANSWERED</span>'; }
if($tkm['status'] == '3') { $tpl->STATUS = '<span class="label label-primary">PROCESS</span>'; }
if($tkm['status'] == '4') { $tpl->STATUS = '<span class="label label-danger">CLOSED</span>'; }
$tpl->block("BLOCK_TICKETS");
}
$tpl->BASE = $config['base'];
$tpl->TITLE = $config['title'];
$tpl->COMPANY = $config['company'];
$tpl->PAGELANG = basename($_SERVER['PHP_SELF']);
// SHOW TPL
$tpl->show();
?>