12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- define('PLUGIN_NAME', 'ticket');
- define('TABLE_TICKET_ASSIGNED_LOG', 'plugin_ticket_assigned_log');
- define('TABLE_TICKET_CATEGORY', 'plugin_ticket_category');
- define('TABLE_TICKET_MESSAGE', 'plugin_ticket_message');
- define('TABLE_TICKET_PRIORITY', 'plugin_ticket_priority');
- define('TABLE_TICKET_PROJECT', 'plugin_ticket_project');
- define('TABLE_TICKET_STATUS', 'plugin_ticket_status');
- define('TABLE_TICKET_TICKET', 'plugin_ticket_ticket');
- define('TABLE_TICKET_MESSAGE_ATTACHMENTS', 'plugin_ticket_message_attachments');
- define('NEWTCK', 'NAT');
- define('PENDING', 'PND');
- define('UNCONFIRMED', 'XCF');
- define('CLOSE', 'CLS');
- define('REENVIADO', 'REE');
- define('NORMAL', 'NRM');
- define('HIGH', 'HGH');
- define('LOW', 'LOW');
- define('SRC_EMAIL', 'MAI');
- define('SRC_PHONE', 'TEL');
- define('SRC_PRESC', 'PRE');
- define('SRC_PLATFORM', 'PLA');
- define('CAT_DOCU', 'DOC');
- define('CAT_FORO', 'FOR');
- define('CAT_ANNU', 'ANN');
- require_once __DIR__ . '/../../main/inc/global.inc.php';
- require_once api_get_path(LIBRARY_PATH) . 'plugin.class.php';
- require_once api_get_path(LIBRARY_PATH) . 'course.lib.php';
- require_once api_get_path(LIBRARY_PATH) . 'mail.lib.inc.php';
- require_once api_get_path(LIBRARY_PATH) . 'export.lib.inc.php';
- require_once api_get_path(LIBRARY_PATH) . 'fileUpload.lib.php';
- require_once api_get_path(PLUGIN_PATH) . PLUGIN_NAME . '/src/ticket_plugin.class.php';
- require_once api_get_path(PLUGIN_PATH) . PLUGIN_NAME . '/src/ticket.class.php';
|