123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <?php // $Id: header_frame.inc.php,v 1.2 2005/05/01 11:49:16 darkden81 Exp $
- /*
- ==============================================================================
- Dokeos - elearning and course management software
- Copyright (c) 2004 Dokeos S.A.
- Copyright (c) 2003 Ghent University (UGent)
- Copyright (c) 2001 Universite catholique de Louvain (UCL)
- Copyright (c) Olivier Brouckaert
- For a full list of contributors, see "credits.txt".
- The full license can be read in "license.txt".
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- See the GNU General Public License for more details.
- Contact: Dokeos, 181 rue Royale, B-1000 Brussels, Belgium, info@dokeos.com
- ==============================================================================
- */
- /**
- ==============================================================================
- * Header of each frame of the Chat tool
- *
- * @author Olivier Brouckaert
- * @modified by Denes Nagy
- * @package dokeos.chat
- ==============================================================================
- */
- if(!defined('FRAME'))
- {
- exit();
- }
- $bodyXtra='';
- if(FRAME == 'hidden')
- {
- $bodyXtra='onload="javascript:updateChat(); updateConnected(); setTimeout(\'submitHiddenForm();\',5000);"';
- // change timeout to change refresh time of the chat window
- }
- elseif(FRAME == 'message')
- {
- $bodyXtra='onload="javascript:eventMessage();"';
- }
- /*
- * Choose CSS style (platform's, user's, or course's)
- */
- $platform_theme = api_get_setting('stylesheets'); // plataform's css
- $my_style=$platform_theme;
- if(api_get_setting('user_selected_theme') == 'true')
- {
- $useri = api_get_user_info();
- $user_theme = $useri['theme'];
- if(!empty($user_theme) && $user_theme != $my_style)
- {
- $my_style = $user_theme; // user's css
- }
- }
- $mycourseid = api_get_course_id();
- if (!empty($mycourseid) && $mycourseid != -1)
- {
- if (api_get_setting('allow_course_theme') == 'true')
- {
- $mycoursetheme=api_get_course_setting('course_theme');
- if (!empty($mycoursetheme) && $mycoursetheme!=-1)
- {
- if(!empty($mycoursetheme) && $mycoursetheme != $my_style)
- {
- $my_style = $mycoursetheme; // course's css
- }
- }
- }
- }
- if (empty($mycourseid))
- {
- // if it is not set $mycourse id we reload the chat_message window in order to hide the
- // textarea to submit a message
- echo '<script type="text/javascript" language="javascript">';
- echo "parent.chat_message.location.href='chat_whoisonline.php?".api_get_cidreq()."';";
- echo '</script>';
- }
- ?><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset;?>">
- <title>Chat</title>
- <link rel="stylesheet" type="text/css" href="../css/<?php echo $my_style; ?>/default.css">
- <style>
- a{
- font-size: 12px;
- }
- .background_submit{
- background: url(../img/chat_little.gif) 2px 2px no-repeat;
- padding: 2px 1px 1px 20px;
- }
- TH{
- font-size: 12px;
- }
- </style>
- <script type="text/javascript" language="javascript">
- <!--
- function updateChat()
- {
- if('<?php echo $chat_size_old; ?>' != '<?php echo $chat_size_new; ?>')
- {
- parent.chat_chat.location.href='chat_chat.php?size=<?php echo $chat_size_new.'&cidReq='.$_GET['cidReq']; ?>#bottom';
- }
- }
- function updateConnected()
- {
- if('<?php echo $connected_old; ?>' != '<?php echo $connected_new; ?>')
- {
- parent.chat_whoisonline.location.href='chat_whoisonline.php?size=<?php echo $connected_new; ?>';
- }
- }
- function submitHiddenForm()
- {
- document.formHidden.submit();
- }
- function eventMessage()
- {
- <?php if($chat_size): ?>
- parent.chat_hidden.document.formHidden.chat_size_old.value='<?php echo $chat_size; ?>';
- parent.chat_chat.location.href='chat_chat.php?size=<?php echo $chat_size.'&cidReq='.$_GET['cidReq']; ?>#bottom';
- <?php endif; ?>
- document.formMessage.message.focus();
- }
- function send_message(evenement){
- for (prop in evenement)
- {
- if(prop == 'which') touche = evenement.which; else touche = evenement.keyCode;
- }
- if (touche == 13)
- {
- document.formMessage.submit();
- }
- }
- //-->
- </script>
- </head>
- <body <?php echo $bodyXtra; ?> >
|