Source for file activity.php
Documentation is available at activity.php
<?php // $Id: activity.php,v 1.5 2006/08/10 14:34:54 pcool Exp $
==============================================================================
Dokeos - elearning and course management software
Copyright (c) 2004-2005 Dokeos S.A.
Copyright (c) 2003 Ghent University
Copyright (c) 2001 Universite Catholique de Louvain
Copyright (c) various contributors
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 address: Dokeos, 44 rue des palais, B-1030 Brussels, Belgium
==============================================================================
==============================================================================
* HOME PAGE FOR EACH COURSE
* This page, included in every course's index.php is the home
* page. To make administration simple, the teacher edits his
* course from the home page. Only the login detects that the
* visitor is allowed to activate, deactivate home page links,
* access to the teachers tools (statistics, edit forums...).
* @package dokeos.course_home
==============================================================================
==============================================================================
==============================================================================
* Displays the tools of a certain category.
* @param string $course_tool_category contains the category of tools to display:
* "toolauthoring", "toolinteraction", "tooladmin", "tooladminplatform"
switch ($course_tool_category)
$result = api_sql_query("SELECT * FROM $course_tool_table WHERE visibility = '1' AND (category = 'authoring' OR category = 'interaction') ORDER BY id",__FILE__ ,__LINE__ );
$result = api_sql_query("SELECT * FROM $course_tool_table WHERE category = 'authoring' ORDER BY id",__FILE__ ,__LINE__ );
$result = api_sql_query("SELECT * FROM $course_tool_table WHERE category = 'interaction' ORDER BY id",__FILE__ ,__LINE__ );
$result = api_sql_query("SELECT * FROM $course_tool_table WHERE category = 'admin' AND visibility ='1' ORDER BY id",__FILE__ ,__LINE__ );
$result = api_sql_query("SELECT * FROM $course_tool_table WHERE category = 'admin' ORDER BY id",__FILE__ ,__LINE__ );
$all_tools_list[]= $temp_row;
$result = api_sql_query("SELECT * FROM $course_tool_table WHERE name='tracking'",__FILE__ ,__LINE__ );
// grabbing all the links that have the property on_homepage set to 1
switch ($course_tool_category)
$sql_links= "SELECT tl.*, tip.visibility
FROM $course_link_table tl
LEFT JOIN $course_item_property_table tip ON tip.tool='link' AND tip.ref=tl.id
WHERE tl.on_homepage='1'";
$sql_links="SELECT tl.*, tip.visibility
FROM $course_link_table tl
LEFT JOIN $course_item_property_table tip ON tip.tool='link' AND tip.ref=tl.id
WHERE tl.on_homepage='1' ";
$sql_links= "SELECT tl.*, tip.visibility
FROM $course_link_table tl
LEFT JOIN $course_item_property_table tip ON tip.tool='link' AND tip.ref=tl.id
WHERE tl.on_homepage='1'";
$sql_links= "SELECT tl.*, tip.visibility
FROM $course_link_table tl
LEFT JOIN $course_item_property_table tip ON tip.tool='link' AND tip.ref=tl.id
WHERE tl.on_homepage='1'";
//edit by Kevin Van Den Haute (kevin@develop-it.be) for integrating Smartblogs
$properties['name'] = $links_row['title'];
$properties['link'] = $links_row['url'];
$properties['visibility'] = $links_row['visibility'];
$properties['image'] = ($links_row['visibility']== '0') ? "file_html.gif" : "file_html.gif";
$tmp_all_tools_list[] = $properties;
if(isset ($tmp_all_tools_list))
foreach($tmp_all_tools_list as $toolsRow)
if($toolsRow['image'] == 'blog.gif')
$blog_id = substr($toolsRow['link'], strrpos($toolsRow['link'], '=') + 1, strlen($toolsRow['link']));
FROM " . $tbl_blogs_rel_user . " `blogs_rel_user`
WHERE `blog_id` = " . $blog_id;
FROM " . $tbl_blogs_rel_user . " `blogs_rel_user`
`blog_id` = " . $blog_id . " AND
$all_tools_list[] = $toolsRow;
$all_tools_list[] = $toolsRow;
if(isset ($all_tools_list))
foreach($all_tools_list as $toolsRow)
{echo "<tr valign=\"top\">\n";}
// This part displays the links to hide or remove a tool.
// These links are only visible by the course manager.
echo '<td width="50%">' . "\n";
if($toolsRow['visibility'] == '1' && $toolsRow['admin'] != '1')
$link['cmd'] = "hide=yes";
if($toolsRow['visibility'] == '0' && $toolsRow['admin'] != '1')
$link['cmd'] = "restore=yes";
if(!empty($toolsRow['adminlink']))
// Both checks are necessary as is_platform_admin doesn't take student view into account
if( $is_platform_admin && $is_allowed_to_edit)
if($toolsRow['admin'] != '1')
$link['cmd'] = "hide=yes";
foreach($lnk as $this_link)
if(empty($toolsRow['adminlink']))
echo "<a href=\"" . api_get_self(). "?". api_get_cidreq(). "&id=" . $toolsRow["id"] . "&" . $this_link['cmd'] . "\">" . $this_link['name'] . "</a>";
else{ echo ' ';}
// NOTE : table contains only the image file name, not full path
if(!stristr($toolsRow['link'], 'http://') && !stristr($toolsRow['link'], 'https://') && !stristr($toolsRow['link'],'ftp://'))
$toolsRow['link'] = $web_code_path . $toolsRow['link'];
if($toolsRow['visibility'] == '0' && $toolsRow['admin'] != '1')
$class= "class=\"invisible\"";
$basename = basename ($toolsRow['image'],'.'. $info['extension']); // $file is set to "index"
$toolsRow['image'] = $basename. '_na.'. $info['extension'];
$qm_or_amp = ((strpos($toolsRow['link'], '?') === FALSE) ? '?' : '&');
//If it's a link, we don't add the cidReq
if($toolsRow['image'] == 'file_html.gif' || $toolsRow['image'] == 'file_html_na.gif'){
$toolsRow['link'] = $toolsRow['link']. $qm_or_amp;
if(strpos($toolsRow['name'],'visio_')!== false){
echo "\t" . '   <a ' . $class . ' href="#" onclick="window.open(\'' . htmlspecialchars($toolsRow['link']) . '\',\'window_visio\',config=\'height=\'+730+\', width=\'+1020+\', left=2, top=2, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no\')" target="' . $toolsRow['target'] . '"> ';
echo "\t" . '   <a ' . $class . ' href="' . htmlspecialchars($toolsRow['link']) . '" target="' . $toolsRow['target'] . '"> ';
echo '<img src="' . $web_code_path . 'img/' . $toolsRow['image'] . '" align="absmiddle" border="0" alt="' . $toolsRow['image'] . '" /> ';
echo ($toolsRow['image'] == 'file_html_na.gif' || $toolsRow['image'] == 'file_html.gif' || $toolsRow['image'] == 'scormbuilder.gif' || $toolsRow['image'] == 'scormbuilder_na.gif' || $toolsRow['image'] == 'blog.gif' || $toolsRow['image'] == 'blog_na.gif' || $toolsRow['image'] == 'external.gif' || $toolsRow['image'] == 'external_na.gif') ? ' '. stripslashes($toolsRow['name']) : ' '. get_lang(ucfirst($toolsRow['name']));
echo "<td width=\"50%\"> </td>\n",
//End of functions show tools
==============================================================================
==============================================================================
-----------------------------------------------------------
Work with data post askable by admin of course (franglais, clean this)
-----------------------------------------------------------
-----------------------------------------------------------
-----------------------------------------------------------
if(!empty($_GET['hide'])) // visibility 1 -> 0
api_sql_query("UPDATE $tool_table SET visibility=0 WHERE id='". $_GET["id"]. "'",__FILE__ ,__LINE__ );
-----------------------------------------------------------
-----------------------------------------------------------
elseif(!empty($_GET['restore'])) // visibility 0,2 -> 1
api_sql_query("UPDATE $tool_table SET visibility=1 WHERE id='". $_GET["id"]. "'",__FILE__ ,__LINE__ );
// work with data post askable by admin of course
// Show message to confirm that a tools must be hide from available tools
if(!empty($_GET['askDelete']))
<a href=" <?php echo api_get_self()?>?delete=yes&id= <?php echo $_GET["id"]?>"> <?php echo get_lang("Yes")?></a>
* Process hiding a tools from available tools.
elseif(isset ($_GET["delete"]) && $_GET["delete"])
api_sql_query("DELETE FROM $tool_table WHERE id='$id' AND added_tool=1",__FILE__ ,__LINE__ );
==============================================================================
==============================================================================
// start of tools for CourseAdmins (teachers/tutors)
<div class="courseadminview">
<span class="viewcaption"> <?php echo get_lang("Authoring") ?></span>
<div class="courseadminview">
<span class="viewcaption"> <?php echo get_lang("Interaction") ?></span>
<div class="courseadminview">
<span class="viewcaption"> <?php echo get_lang("Administration") ?></span>
==============================================================================
==============================================================================
<div class="Authoringview">
|