Code Search for Developers
 
 
  

online_streaming.php from pointcarre at Krugle


Show online_streaming.php syntax highlighted

<?php // $Id: online_streaming.php 2 2005-07-15 13:01:38Z roane $
/*
==============================================================================
	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
==============================================================================
*/
/**
==============================================================================
*	Allows to define the format and the URL of the audio or video stream
*
*	@author Olivier Brouckaert
*	@package dokeos.online
==============================================================================
*/

define('FRAME','streaming');

$langFile='chat';

include('../inc/claro_init_global.inc.php');

$tbl_user=$mainDbName."`.`user";

$query="SELECT username FROM `$tbl_user` WHERE user_id='$_uid'";
$result=api_sql_query($query,__FILE__,__LINE__);

list($pseudoUser)=mysql_fetch_row($result);

$isAllowed=(empty($pseudoUser) || !$_cid)?false:true;
$isMaster=$is_courseAdmin?true:false;

if(!$isAllowed || !$isMaster)
{
	exit();
}

$documentPath=api_get_path(SYS_COURSE_PATH).$_course['path'].'/document/';
$onlinePath=$documentPath.'online_files/';

if($_POST['sent'])
{
	$sent=1;

	$stream_url=trim(stripslashes($_POST['stream_url']));
	$stream_type=trim(stripslashes($_POST['stream_type']));

	if(!empty($stream_url) && $stream_url != 'http://')
	{
		$fp=fopen($onlinePath.'streaming.txt','w');

		fputs($fp,$stream_url."\n".$stream_type);

		fclose($fp);
	}

	mysql_close();
	header('Location: online_master.php');
	exit();
}
else
{
	if(!list($stream_url,$stream_type)=@file($onlinePath.'streaming.txt'))
	{
		$stream_url='';
		$stream_type='mp3';
	}
	else
	{
		$stream_url=rtrim($stream_url);
		$stream_type=rtrim($stream_type);
	}
}

include('header_frame.inc.php');
?>

<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
  <td width="1%" valign="middle"><a href="online_master.php"><img src="../img/home.gif" border="0" alt="" title="<?php echo htmlentities(get_lang('Back')); ?>"></a></td>
  <td width="99%" align="left">&nbsp;<a href="online_master.php"><?php echo get_lang('Back'); ?></a></td>
</tr>
</table>

<br>

<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<input type="hidden" name="sent" value="1">
<table border="0" cellpadding="3" cellspacing="0">
<tr>
  <td width="45%"><?php echo get_lang('StreamURL'); ?> :</td>
  <td width="55%"><input type="text" name="stream_url" size="10" maxlength="100" value="<?php if(!empty($stream_url)) echo htmlentities($stream_url); else echo 'http://'; ?>" style="width: 100px;"></td>
</tr>
<tr>
  <td width="45%" valign="middle"><?php echo get_lang('StreamType'); ?> :</td>
  <td width="55%">
	<input type="radio" name="stream_type" value="mp3" <?php if($stream_type == 'mp3') echo 'checked="checked"'; ?> > MP3<br>
	<input type="radio" name="stream_type" value="mp4" <?php if($stream_type == 'mp4') echo 'checked="checked"'; ?> > MP4<br>
	<input type="radio" name="stream_type" value="mov" <?php if($stream_type == 'mov') echo 'checked="checked"'; ?> > MOV<br>
  </td>
</tr>
<tr>
  <td colspan="2" align="center"><input type="submit" value="<?php echo htmlentities(get_lang('Modify')); ?>"></td>
</tr>
</table>
</form>

<?php
include('footer_frame.inc.php');
?>




See more files for this project here

pointcarre

Pointcarre - a learning management system based on the Dokeos community releases. No fork, but containing locally developed extensions, features not (yet) in the standard release, integrated plugins...

Project homepage: http://sourceforge.net/projects/pointcarre
Programming language(s): PHP
License: other

  footer_frame.inc.php
  header_frame.inc.php
  index.html
  online.php
  online_banner.php
  online_chat.php
  online_goto.php
  online_hidden1.php
  online_hidden2.php
  online_htmlarea.php
  online_links.php
  online_master.php
  online_message.php
  online_streaming.php
  online_whoisonline.php
  online_working_area.php