footerpage.php 847 B

12345678910111213141516171819202122232425
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.document
  5. * TODO: There is no indication that this file us used for something.
  6. */
  7. /**
  8. * Code
  9. */
  10. require_once '../inc/global.inc.php';
  11. $my_style = api_get_visual_theme();
  12. ?><!DOCTYPE html
  13. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  14. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  15. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo api_get_language_isocode(); ?>" lang="<?php echo api_get_language_isocode(); ?>">
  16. <head>
  17. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo api_get_system_encoding(); ?>" />
  18. <link rel="stylesheet" href="<?php echo api_get_path(WEB_CSS_PATH).$my_style; ?>/default.css" type="text/css">
  19. </head>
  20. <body dir="<?php echo api_get_text_direction(); ?>">
  21. <?php
  22. Display::display_footer();