index.php 682 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /* For licensing terms, see /dokeos_license.txt */
  3. /**
  4. * @package dokeos.glossary
  5. * @author Christian Fasanando, initial version
  6. * @author Patrick Cool <patrick.cool@UGent.be>, Ghent University, Belgium, refactoring and tighter integration in Dokeos
  7. */
  8. // name of the language file that needs to be included
  9. $language_file = array('userInfo');
  10. // including the global dokeos file
  11. require_once '../inc/global.inc.php';
  12. // setting the tool constants
  13. $tool = TOOL_ATTENDANCE;
  14. // displaying the header
  15. Display::display_header(get_lang(ucfirst($tool)));
  16. // Tool introduction
  17. Display::display_introduction_section(TOOL_NOTEBOOK);
  18. // footer
  19. Display :: display_footer();