home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / dotproject / modules / ticketsmith / config.inc.php < prev    next >
Encoding:
PHP Script  |  2004-01-29  |  2.0 KB  |  60 lines

  1. <?php
  2.  
  3. /* $Id: config.inc.php,v 1.6 2004/01/29 06:56:17 ajdonnison Exp $ */
  4.  
  5. // reply-to address for staff followups
  6. // i.e. the address the gateway receives
  7. if ( ! isset($AppUI->cfg['site_domain']))
  8.   $AppUI->cfg['site_domain'] = "dotproject.net";
  9.  
  10. $CONFIG["reply_to"] = "support@" . $AppUI->cfg['site_domain'];
  11. // If you want to hide real addresses behind a bogus 
  12. // generic email, uncomment the following:
  13. // $CONFIG["reply_name"] = "Help Desk";
  14.  
  15. // relative path of the program installation
  16. // i.e. the part of the URL after the server name
  17. // use "" if at the top-level of a server
  18. $CONFIG["relative_path"] = "/ticketsmith";
  19.  
  20. // page color preferences
  21. $CONFIG["background_color"] = "#ffffff";
  22. $CONFIG["heading_color"] = "#cc0000";
  23. $CONFIG["ticket_color"] = "#ffffee";
  24.  
  25. // date format
  26. $CONFIG["date_format"] = "D M j Y g:ia";
  27.  
  28. // visual warnings for old tickets
  29. $CONFIG["warning_active"]= 1; // 0 = inactive, 1 = active
  30. $CONFIG["warning_color"] = "#ff0000";
  31. $CONFIG["warning_age"] = "0.5"; // in hours
  32.  
  33. // priority names (low to high)
  34. $CONFIG["priority_names"] = array($AppUI->_("Low"),$AppUI->_("Normal"),$AppUI->_("High"),$AppUI->_("Highest"),$AppUI->_("911"));
  35.  
  36. // priority colors (low to high)
  37. $CONFIG["priority_colors"] = array("#006600","#000000","#ff0000","#ff0000","#ff0000");
  38.  
  39. $CONFIG["type_names"] = array("Open" => $AppUI->_("Open"), "Closed" => $AppUI->_("Closed"), "Deleted" => $AppUI->_("Deleted"));
  40. // number of tickets to see at once
  41. $CONFIG["view_rows"] = 40;
  42.  
  43. // wordwrap badly-formatted messages (PHP >= 4.0.2 only)
  44. $CONFIG["wordwrap"] = 1; // 0 = inactive, 1 = active
  45.  
  46. // column to order messages by
  47. $CONFIG["order_by"] = "timestamp"; // "author", "subject", "timestamp", "activity", "type", "priority", "assignment"
  48.  
  49. // order in which to display messages
  50. $CONFIG["message_order"] = "ASC"; // "ASC" or "DESC"
  51.  
  52. // order in which to display followups
  53. $CONFIG["followup_order"] = "ASC"; // "ASC" or "DESC"
  54.  
  55. // go to parent or latest followup from index?
  56. // note that latest followup is slightly slower
  57. $CONFIG["index_link"] = "parent"; // "parent" or "latest"
  58.  
  59. ?>
  60.