footerpage.php 832 B

1234567891011121314151617181920212223
  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. require_once '../inc/global.inc.php';
  8. $my_style = api_get_visual_theme();
  9. ?><!DOCTYPE html
  10. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  11. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo api_get_language_isocode(); ?>" lang="<?php echo api_get_language_isocode(); ?>">
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo api_get_system_encoding(); ?>" />
  15. <link rel="stylesheet" href="<?php echo api_get_path(WEB_CSS_PATH).$my_style; ?>/default.css" type="text/css">
  16. </head>
  17. <body dir="<?php echo api_get_text_direction(); ?>">
  18. <?php
  19. Display::display_footer();