chat_footer.php 549 B

123456789101112131415161718192021222324252627
  1. <?php
  2. require ('../inc/global.inc.php');
  3. define('FRAME','footer');
  4. echo '<html><head><style>';
  5. if(api_get_setting('stylesheets')!=""){
  6. $css=api_get_setting('stylesheets');
  7. }
  8. else{
  9. $css='default';
  10. }
  11. echo '@import "'.api_get_path(WEB_CODE_PATH).'css/'.$css.'/default.css'.'";';
  12. echo '</style></head><body><br>';
  13. /*
  14. ==============================================================================
  15. FOOTER
  16. ==============================================================================
  17. */
  18. Display::display_footer();
  19. ?>