home *** CD-ROM | disk | FTP | other *** search
- <?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 = $AppUI->getConfig( '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 */
- ?>
-