-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattach.php
More file actions
executable file
·168 lines (146 loc) · 5.7 KB
/
attach.php
File metadata and controls
executable file
·168 lines (146 loc) · 5.7 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?php
if (!$canEdit) {
$AppUI->redirect( "m=public&a=access_denied" );
}
$ticket = dPgetParam( $_GET, 'ticket', '');
$titleBlock = new CTitleBlock( 'Link Ticket', 'gconf-app-icon.php', $m, "$m.$a");
$titleBlock->addCrumb( "?m=ticketsmith", "tickets list" );
$titleBlock->show();
require("./modules/ticketsmith/config.inc.php");
require("./modules/ticketsmith/common.inc.php");
$app_root = dPgetConfig( 'base_url' );
/* setup table & database field stuff */
$fields = array("headings" => array("Link", "Author", "Subject", "Date",
"Followup", "Status", "Priority", "Owner"),
"columns" => array("ticket", "author", "subject", "timestamp",
"activity", "type", "priority", "assignment"),
"types" => array("doattach", "email", "normal", "open_date",
"activity_date", "normal", "priority_view", "user"),
"aligns" => array("center", "left", "left", "left", "left",
"center", "center", "center"));
/* set up defaults for viewing */
$type = @$type ? $type : "Open";
$column = @$column ? $column : "priority";
$direction = @$direction ? $direction : "DESC";
$offset = @$offset ? $offset : 0;
$limit = @$limit ? $limit : $CONFIG["view_rows"];
/* count tickets */
$query = "SELECT COUNT(*) FROM tickets WHERE parent = '0' and ticket != $ticket";
if ($type != 'All') {
$query .= " AND type = '$type'";
}
$ticket_count = query2result($query);
/* paging controls */
if (($offset + $limit) < $ticket_count) {
$page_string = ($offset + 1) . " to " . ($offset + $limit) . " of $ticket_count";
}
else {
$page_string = ($offset + 1) . " to $ticket_count of $ticket_count";
}
/* start table */
$title = "Assign ticket to parent";
?>
<table class="tbl" width="100%">
<tr>
<td colspan="<?php echo count( $fields["headings"] );?>" align="center">
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr>
<td width="33%"></td>
<td width="34%" align="center"><strong><?php echo $AppUI->_($title);?></strong></td>
<td width="33%" align="right" valign="middle">
<?php
if ($ticket_count > $limit) {
if ($offset - $limit >= 0) {
print("<a href=index.php?m=ticketsmith&type=$type&column=$column&direction=$direction&offset=" . ($offset - $limit) . "><img src=modules/ticketsmith/images/ltwt.gif border=0></a> | \n");
}
print("$page_string\n");
if ($offset + $limit < $ticket_count) {
print(" | <a href=index.php?m=ticketsmith&type=$type&column=$column&direction=$direction&offset=" . ($offset + $limit) . "><img src=modules/ticketsmith/images/rtwt.gif border=0></a>\n");
}
}
?>
</td>
</tr>
</table>
</td>
</tr>
<?php
/* form query */
$select_fields= join(", ", $fields["columns"]);
$query = "SELECT $select_fields FROM tickets WHERE ";
if ($type == "My") {
$query .= "type = 'Open' AND (assignment = '$user_cookie' OR assignment = '0') AND ";
}
elseif ($type != "All") {
$query .= "type = '$type' AND ";
}
$query .= "ticket != $ticket AND ";
$query .= "parent = '0' ORDER BY " . urlencode($column) . " $direction LIMIT $offset, $limit";
/* do query */
$result = do_query($query);
$parent_count = number_rows($result);
/* output tickets */
if ($parent_count) {
print("<tr>\n");
for ($loop = 0; $loop < count($fields["headings"]); $loop++) {
print("<td align=" . $fields["aligns"][$loop] . ">");
print("<a href=index.php?m=ticketsmith&type=$type");
print("&column=" . $fields["columns"][$loop]);
if ($column != $fields["columns"][$loop]) {
$new_direction = "ASC";
}
else {
if ($direction == "ASC") {
$new_direction = "DESC";
}
else {
$new_direction == "ASC";
}
}
print("&direction=$new_direction");
print("><b>" . $AppUI->_($fields["headings"][$loop]) . "</b></a></td>\n");
}
print("</tr>\n");
while ($row = result2hash($result)) {
print("<tr height=25>\n");
for ($loop = 0; $loop < count($fields["headings"]); $loop++) {
print("<td bgcolor=white align=" . $fields["aligns"][$loop] . ">\n");
print(format_field($row[$fields["columns"][$loop]], $fields["types"][$loop], $ticket) . "\n");
print("</td>\n");
}
print("</tr>\n");
}
}
else {
print("<tr height=25>\n");
print("<td align=center colspan=" . count($fields["headings"]) . ">\n");
print($AppUI->_('There are no')." ");
print($type == "All" ? "" : strtolower($AppUI->_($type)) . " ");
print($AppUI->_('tickets').".\n");
print("</td>\n");
print("</tr>\n");
}
/* output action links */
print("<tr>\n");
print("<td><br></td>\n");
print("<td colspan=" . (count($fields["headings"]) - 1) . " align=right>\n");
print("<table width=100% border=0 cellspacing=0 cellpadding=0>\n");
print("<tr height=25><td align=left>");
$types = array("My","Open","Closed","Deleted","All");
for ($loop = 0; $loop < count($types); $loop++) {
$toggles[] = "<a href=index.php?m=ticketsmith&type=" . $types[$loop] . ">" . $AppUI->_($types[$loop]) . "</a>";
}
print(join(" | ", $toggles));
print(" ".$AppUI->_('Tickets')."</td>\n");
if ($type == "Deleted" && $parent_count) {
print("<td align=center><a href=index.php?m=ticketsmith&type=Deleted&action=expunge>".$AppUI->_('Expunge Deleted')."</a></td>");
}
print("<td align=right><a href=index.php?m=ticketsmith&a=search>".$AppUI->_('Search')."</a> |
<a href=index.php?m=ticketsmith&type=$type>".$AppUI->_('Back to top')."</a></td></tr>\n");
print("</table>\n");
print("</td>\n");
print("</tr>\n");
/* end table */
print("</table>\n");
/* end page */
?>