online.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php // $Id: online.php 9246 2006-09-25 13:24:53Z bmol $
  2. /*
  3. ==============================================================================
  4. Dokeos - elearning and course management software
  5. Copyright (c) 2004 Dokeos S.A.
  6. Copyright (c) 2003 Ghent University (UGent)
  7. Copyright (c) 2001 Universite catholique de Louvain (UCL)
  8. Copyright (c) Olivier Brouckaert
  9. For a full list of contributors, see "credits.txt".
  10. The full license can be read in "license.txt".
  11. This program is free software; you can redistribute it and/or
  12. modify it under the terms of the GNU General Public License
  13. as published by the Free Software Foundation; either version 2
  14. of the License, or (at your option) any later version.
  15. See the GNU General Public License for more details.
  16. Contact: Dokeos, 181 rue Royale, B-1000 Brussels, Belgium, info@dokeos.com
  17. ==============================================================================
  18. */
  19. /**
  20. ==============================================================================
  21. * Frameset of the Online conference tool
  22. *
  23. * @author Olivier Brouckaert
  24. * @package dokeos.online
  25. ==============================================================================
  26. */
  27. include('../inc/global.inc.php');
  28. api_protect_course_script();
  29. /* ==============================================================================
  30. TRACKING
  31. ============================================================================== */
  32. include('../inc/lib/events.lib.inc.php');
  33. event_access_tool(TOOL_CONFERENCE);
  34. ?>
  35. <!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
  36. <html>
  37. <head>
  38. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  39. <title>Online Conference</title>
  40. </head>
  41. <frameset rows="115,*" border="1" frameborder="1" framespacing="1">
  42. <frame src="online_banner.php" name="online_banner" scrolling="no">
  43. <frameset cols="220,*,0" border="1" frameborder="1" framespacing="1">
  44. <frameset rows="230,*" border="1" frameborder="1" framespacing="1">
  45. <frame src="online_master.php?init=1" name="online_master" scrolling="auto">
  46. <frame src="online_whoisonline.php" name="online_whoisonline" scrolling="auto">
  47. </frameset>
  48. <frameset rows="*,100,40" border="1" frameborder="1" framespacing="1">
  49. <frame src="online_working_area.php" name="online_working_area" scrolling="auto">
  50. <frame src="online_chat.php" name="online_chat" scrolling="auto">
  51. <frame src="online_message.php" name="online_message" scrolling="no">
  52. </frameset>
  53. <frameset rows="0,0" border="0" frameborder="0" framespacing="0">
  54. <frame src="online_hidden1.php" name="online_hidden1" scrolling="no">
  55. <frame src="online_hidden2.php" name="online_hidden2" scrolling="no">
  56. </frameset>
  57. </frameset>
  58. </frameset><noframes></noframes>
  59. </html>