start.php 404 B

1234567891011121314
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * This script initiates a ticket management system session
  5. * @package chamilo.plugin.ticket
  6. */
  7. $course_plugin = 'ticket'; //needed in order to load the plugin lang variables
  8. require_once __DIR__.'/config.php';
  9. $tool_name = get_lang('Ticket');
  10. $tpl = new Template($tool_name);
  11. $tpl->assign('message', $message);
  12. $tpl->display_one_col_template();