[svn r12307] bugfix: tab my courses not active in forum

skala
Patrick Cool 18 years ago
parent a62ce95075
commit 8939602953
  1. 42
      main/forum/editpost.php
  2. 79
      main/forum/index.php
  3. 73
      main/forum/newthread.php
  4. 40
      main/forum/reply.php
  5. 8
      main/forum/viewforum.php
  6. 63
      main/forum/viewforumcategory.php
  7. 7
      main/forum/viewthread.php

@ -22,23 +22,23 @@
*/
/**
* These files are a complete rework of the forum. The database structure is
* These files are a complete rework of the forum. The database structure is
* based on phpBB but all the code is rewritten. A lot of new functionalities
* are added:
* - forum categories and forums can be sorted up or down, locked or made invisible
* - consistent and integrated forum administration
* - forum options: are students allowed to edit their post?
* - forum options: are students allowed to edit their post?
* moderation of posts (approval)
* reply only forums (students cannot create new threads)
* multiple forums per group
* - sticky messages
* - new view option: nested view
* - quoting a message
*
*
* @Author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @Copyright Ghent University
* @Copyright Patrick Cool
*
*
* @package dokeos.forum
*/
@ -50,7 +50,7 @@
* merge files and test it all over again. So for the moment, please do not
* touch the code
* -- Patrick Cool <patrick.cool@UGent.be>
**************************************************************************
**************************************************************************
*/
/*
@ -58,21 +58,23 @@
INIT SECTION
==============================================================================
*/
// name of the language file that needs to be included
$language_file = 'forum';
// including the global dokeos file
require ('../inc/global.inc.php');
// the section (tabs)
$this_section=SECTION_COURSES;
// FCKeditor configuration
$fck_attribute['Width'] = '100%';
$fck_attribute['Height'] = '300';
$fck_attribute['ToolbarSet'] = 'Middle';
$fck_attribute['Config']['IMUploadPath'] = 'upload/forum/';
$fck_attribute['Config']['FlashUploadPath'] = 'upload/forum/';
/*
-----------------------------------------------------------
Language Initialisation
-----------------------------------------------------------
*/
// name of the language file that needs to be included
$language_file = 'forum';
require ('../inc/global.inc.php');
// including additional library scripts
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
include_once (api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
@ -101,11 +103,11 @@ include('forumfunction.inc.php');
Retrieving forum and forum categorie information
-----------------------------------------------------------
*/
// we are getting all the information about the current forum and forum category.
// we are getting all the information about the current forum and forum category.
// note pcool: I tried to use only one sql statement (and function) for this
// but the problem is that the visibility of the forum AND forum cateogory are stored in the item_property table
$current_thread=get_thread_information($_GET['thread']); // note: this has to be validated that it is an existing thread
$current_forum=get_forum_information($_GET['forum']); // note: this has to be validated that it is an existing forum.
$current_forum=get_forum_information($_GET['forum']); // note: this has to be validated that it is an existing forum.
$current_forum_category=get_forumcategory_information($current_forum['forum_category']);
$current_post=get_post_information($_GET['post']);
/*
@ -126,7 +128,7 @@ $interbreadcrumb[]=array("url" => "reply.php?forum=".$_GET['forum']."&amp;thread
*/
if (isset($_POST['add_resources']) AND $_POST['add_resources']==get_lang('Resources'))
{
$_SESSION['formelements']=$_POST;
$_SESSION['formelements']=$_POST;
$_SESSION['origin']=$_SERVER['REQUEST_URI'];
$_SESSION['breadcrumbs']=$interbreadcrumb;
header("Location: ../resourcelinker/resourcelinker.php");
@ -142,7 +144,7 @@ api_display_tool_title($nameTools);
////echo '<link href="forumstyles.css" rel="stylesheet" type="text/css" />';
/*
-----------------------------------------------------------
Is the user allowed here?
Is the user allowed here?
-----------------------------------------------------------
*/
// the user is not allowed here if
@ -151,7 +153,7 @@ api_display_tool_title($nameTools);
// 3. if anonymous posts are not allowed
// 4. if editing of replies is not allowed
// The only exception is the course manager
// I have split this is several pieces for clarity.
// I have split this is several pieces for clarity.
//if (!api_is_allowed_to_edit() AND (($current_forum_category['visibility']==0 OR $current_forum['visibility']==0) OR ($current_forum_category['locked']<>0 OR $current_forum['locked']<>0 OR $current_thread['locked']<>0)))
if (!api_is_allowed_to_edit() AND (($current_forum_category['visibility']==0 OR $current_forum['visibility']==0)))
{
@ -185,7 +187,7 @@ echo '<span>'.prepare4display($current_forum_category['cat_comment']).'</span>';
echo "</td>\n";
echo "\t</tr>\n";
// the forum
// the forum
echo "\t<tr class=\"forum_header\">\n";
echo "\t\t<td colspan=\"2\">";
echo '<a href="viewforum.php?forum='.$current_forum['forum_id'].'" '.class_visible_invisible($current_forum['visibility']).'>'.prepare4display($current_forum['forum_title']).'</a><br />';
@ -196,7 +198,7 @@ echo "\t</tr>\n";
echo '</table>';
// the form for the reply
$values=show_edit_post_form($current_post, $current_thread, $_SESSION['formelements']);
$values=show_edit_post_form($current_post, $current_thread, $_SESSION['formelements']);
if (!empty($values) and $_POST['SubmitPost'])
{
store_edit_post($values);

@ -22,23 +22,23 @@
*/
/**
* These files are a complete rework of the forum. The database structure is
* These files are a complete rework of the forum. The database structure is
* based on phpBB but all the code is rewritten. A lot of new functionalities
* are added:
* - forum categories and forums can be sorted up or down, locked or made invisible
* - consistent and integrated forum administration
* - forum options: are students allowed to edit their post?
* - forum options: are students allowed to edit their post?
* moderation of posts (approval)
* reply only forums (students cannot create new threads)
* multiple forums per group
* - sticky messages
* - new view option: nested view
* - quoting a message
*
*
* @Author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @Copyright Ghent University
* @Copyright Patrick Cool
*
*
* @package dokeos.forum
*/
@ -50,7 +50,7 @@
* merge files and test it all over again. So for the moment, please do not
* touch the code
* -- Patrick Cool <patrick.cool@UGent.be>
**************************************************************************
**************************************************************************
*/
/*
@ -63,9 +63,16 @@
Language Initialisation
-----------------------------------------------------------
*/
// name of the language file that needs to be included
// name of the language file that needs to be included
$language_file = 'forum';
// including the global dokeos file
require ('../inc/global.inc.php');
// the section (tabs)
$this_section=SECTION_COURSES;
// including additional library scripts
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
include_once (api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
$nameTools=get_lang('Forum');
@ -154,7 +161,7 @@ if(is_array($all_groups))
{
foreach ($all_groups as $group)
{
$all_groups[$group['id']]=$group;
$all_groups[$group['id']]=$group;
}
}
@ -201,7 +208,7 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
echo "</th>\n";
}
echo "\t</tr>\n";
// step 4: the interim headers (for the forum)
echo "\t<tr class=\"forum_header\">\n";
echo "\t\t<td colspan='2'>".get_lang('Forum')."</td>\n";
@ -213,16 +220,16 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
echo "\t\t<td>".get_lang('Actions')."</td>\n";
}
echo "\t</tr>\n";
// the forums in this category
$forums_in_category=get_forums_in_category($forum_category['cat_id']);
// step 5: we display all the forums in this category.
$forum_count=0;
foreach ($forum_list as $key=>$forum)
{
// Here we clean the whatnew_post_info array a little bit because to display the icon we
// test if $whatsnew_post_info[$forum['forum_id']] is empty or not.
// Here we clean the whatnew_post_info array a little bit because to display the icon we
// test if $whatsnew_post_info[$forum['forum_id']] is empty or not.
foreach ($whatsnew_post_info[$forum['forum_id']] as $key_thread_id => $new_post_array)
{
if (empty($whatsnew_post_info[$forum['forum_id']][$key_thread_id]))
@ -231,7 +238,7 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
unset($_SESSION['whatsnew_post_info'][$forum['forum_id']][$key_thread_id]);
}
}
// note: this can be speeded up if we transform the $forum_list to an array that uses the forum_category as the key.
if (prepare4display($forum['forum_category'])==prepare4display($forum_category['cat_id']))
{
@ -246,14 +253,14 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
// SHOULD WE SHOW THIS PARTICULAR FORUM
// you are teacher => show forum
if (api_is_allowed_to_edit())
{
//echo 'teacher';
$show_forum=true;
}
// you are not a teacher
else
else
{
//echo 'student';
// it is not a group forum => show forum (invisible forums are already left out see get_forums function)
@ -263,7 +270,7 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
$show_forum=true;
}
// it is a group forum
else
else
{
//echo '-groepsforum';
// it is a group forum but it is public => show
@ -273,7 +280,7 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
//echo '-publiek';
}
// it is a group forum and it is private
else
else
{
//echo '-prive';
// it is a group forum and it is private but the user is member of the group
@ -282,17 +289,17 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
//echo '-is lid';
$show_forum=true;
}
else
else
{
//echo '-is GEEN lid';
$show_forum=false;
}
}
}
}
}
//echo '<hr>';
if ($show_forum)
{
$form_count++;
@ -302,24 +309,24 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
{
if (is_array($whatsnew_post_info[$forum['forum_id']]) and !empty($whatsnew_post_info[$forum['forum_id']]))
{
echo icon('../img/forumgroupnew.gif');
echo icon('../img/forumgroupnew.gif');
}
else
else
{
echo icon('../img/forumgroup.gif');
echo icon('../img/forumgroup.gif');
}
}
else
else
{
if (is_array($whatsnew_post_info[$forum['forum_id']]) and !empty($whatsnew_post_info[$forum['forum_id']]))
{
echo icon('../img/forum.gif');
echo icon('../img/forum.gif');
}
else
else
{
echo icon('../img/forum.gif');
echo icon('../img/forum.gif');
}
}
echo "</td>\n";
if ($forum['forum_of_group']<>'0')
@ -327,11 +334,11 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
$group_title=substr($all_groups[$forum['forum_of_group']]['name'],0,30);
$forum_title_group_addition=' (<a href="../group/group_space.php?'.api_get_cidreq().'&gidReq='.$all_groups[$forum['forum_of_group']]['id'].'" class="forum_group_link">'.$group_title.'</a>)';
}
else
else
{
$forum_title_group_addition='';
}
echo "\t\t<td><a href=\"viewforum.php?".api_get_cidreq()."&forum=".prepare4display($forum['forum_id'])."\" ".class_visible_invisible(prepare4display($forum['visibility'])).">".prepare4display($forum['forum_title']).'</a>'.$forum_title_group_addition.'<br />'.prepare4display($forum['forum_comment'])."</td>\n";
//$number_forum_topics_and_posts=get_post_topics_of_forum($forum['forum_id']); // deprecated
// the number of topics and posts
@ -341,21 +348,21 @@ foreach ($forum_categories_list as $forum_category_key => $forum_category)
if ($forum['last_poster_name']<>'')
{
$name=$forum['last_poster_name'];
$poster_id=0;
$poster_id=0;
}
else
else
{
$name=$forum['last_poster_firstname'].' '.$forum['last_poster_lastname'];
$poster_id=$forum['last_poster_id'];
}
}
echo "\t\t<td NOWRAP>";
if (!empty($forum['last_post_id']))
{
echo $forum['last_post_date']."<br /> ".get_lang('By').' '.display_user_link($poster_id, $name);
}
echo "</td>\n";
if (api_is_allowed_to_edit())
{
echo "\t\t<td NOWRAP>";

@ -22,23 +22,23 @@
*/
/**
* These files are a complete rework of the forum. The database structure is
* These files are a complete rework of the forum. The database structure is
* based on phpBB but all the code is rewritten. A lot of new functionalities
* are added:
* - forum categories and forums can be sorted up or down, locked or made invisible
* - consistent and integrated forum administration
* - forum options: are students allowed to edit their post?
* - forum options: are students allowed to edit their post?
* moderation of posts (approval)
* reply only forums (students cannot create new threads)
* multiple forums per group
* - sticky messages
* - new view option: nested view
* - quoting a message
*
*
* @Author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @Copyright Ghent University
* @Copyright Patrick Cool
*
*
* @package dokeos.forum
*/
@ -50,7 +50,7 @@
* merge files and test it all over again. So for the moment, please do not
* touch the code
* -- Patrick Cool <patrick.cool@UGent.be>
**************************************************************************
**************************************************************************
*/
/*
@ -66,33 +66,44 @@
Language Initialisation
-----------------------------------------------------------
*/
// name of the language file that needs to be included
// name of the language file that needs to be included
$language_file = 'forum';
// including the global dokeos file
require ('../inc/global.inc.php');
// the section (tabs)
$this_section=SECTION_COURSES;
// including additional library scripts
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
include_once (api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
$nameTools=get_lang('Forum');
// configuration for FCKeditor
$fck_attribute['Width'] = '100%';
$fck_attribute['Height'] = '300';
$fck_attribute['ToolbarSet'] = 'Middle';
$fck_attribute['Config']['IMUploadPath'] = 'upload/forum/';
$fck_attribute['Config']['FlashUploadPath'] = 'upload/forum/';
if(!api_is_allowed_to_edit()) $fck_attribute['Config']['UserStatus'] = 'student';
if(!api_is_allowed_to_edit())
{
$fck_attribute['Config']['UserStatus'] = 'student';
}
/*
-----------------------------------------------------------
Including necessary files
-----------------------------------------------------------
*/
include('forumconfig.inc.php');
include('forumfunction.inc.php');
//are we in a lp ?
$origin = '';
if(isset($_GET['origin']))
{
$origin = $_GET['origin'];
include('forumfunction.inc.php');
//are we in a lp ?
$origin = '';
if(isset($_GET['origin']))
{
$origin = $_GET['origin'];
}
@ -106,7 +117,7 @@ if(isset($_GET['origin']))
Retrieving forum and forum categorie information
-----------------------------------------------------------
*/
$current_forum=get_forum_information($_GET['forum']); // note: this has to be validated that it is an existing forum.
$current_forum=get_forum_information($_GET['forum']); // note: this has to be validated that it is an existing forum.
$current_forum_category=get_forumcategory_information($current_forum['forum_category']);
/*
@ -126,7 +137,7 @@ $interbreadcrumb[]=array("url" => "newthread.php?forum=".$_GET['forum'],"name" =
*/
if (isset($_POST['add_resources']) AND $_POST['add_resources']==get_lang('Resources'))
{
$_SESSION['formelements']=$_POST;
$_SESSION['formelements']=$_POST;
$_SESSION['origin']=$_SERVER['REQUEST_URI'];
$_SESSION['breadcrumbs']=$interbreadcrumb;
header("Location: ../resourcelinker/resourcelinker.php");
@ -137,26 +148,26 @@ if (isset($_POST['add_resources']) AND $_POST['add_resources']==get_lang('Resour
Header
-----------------------------------------------------------
*/
if($origin=='learnpath')
{
include(api_get_path(INCLUDE_PATH).'reduced_header.inc.php');
} else
{
Display :: display_header();
api_display_tool_title($nameTools);
if($origin=='learnpath')
{
include(api_get_path(INCLUDE_PATH).'reduced_header.inc.php');
} else
{
Display :: display_header();
api_display_tool_title($nameTools);
}
//echo '<link href="forumstyles.css" rel="stylesheet" type="text/css" />';
/*
-----------------------------------------------------------
Is the user allowed here?
Is the user allowed here?
-----------------------------------------------------------
*/
// the user is not allowed here if:
// the user is not allowed here if:
// 1. the forumcategory or forum is invisible (visibility==0) and the user is not a course manager
// 2. the forumcategory or forum is locked (locked <>0) and the user is not a course manager
// 3. new threads are not allowed and the user is not a course manager
// 4. anonymous posts are not allowed and the user is not logged in
// I have split this is several pieces for clarity.
// I have split this is several pieces for clarity.
if (!api_is_allowed_to_edit() AND (($current_forum_category['visibility']==0 OR $current_forum['visibility']==0)))
{
@ -192,17 +203,17 @@ handle_forum_and_forumcategories();
*/
echo "<table class=\"data_table\" width='100%'>\n";
// the forum category
if($origin != 'learnpath')
// the forum category
if($origin != 'learnpath')
{
echo "\t<tr>\n\t\t<th style=\"padding-left:5px;\" align=\"left\" colspan=\"2\">";
echo '<a href="index.php?'.api_get_cidreq().'&origin='.$origin.'" '.class_visible_invisible($current_forum_category['visibility']).'>'.$current_forum_category['cat_title'].'</a><br />';
echo '<span>'.$current_forum_category['cat_comment'].'</span>';
echo "</th>\n";
echo "\t</tr>\n";
echo "\t</tr>\n";
}
// the forum
// the forum
echo "\t<tr class=\"forum_header\">\n";
echo "\t\t<td colspan=\"2\">".$current_forum['forum_title']."<br />";
echo '<span>'.$current_forum['forum_comment'].'</span>';

@ -22,23 +22,23 @@
*/
/**
* These files are a complete rework of the forum. The database structure is
* These files are a complete rework of the forum. The database structure is
* based on phpBB but all the code is rewritten. A lot of new functionalities
* are added:
* - forum categories and forums can be sorted up or down, locked or made invisible
* - consistent and integrated forum administration
* - forum options: are students allowed to edit their post?
* - forum options: are students allowed to edit their post?
* moderation of posts (approval)
* reply only forums (students cannot create new threads)
* multiple forums per group
* - sticky messages
* - new view option: nested view
* - quoting a message
*
*
* @Author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @Copyright Ghent University
* @Copyright Patrick Cool
*
*
* @package dokeos.forum
*/
@ -50,7 +50,7 @@
* merge files and test it all over again. So for the moment, please do not
* touch the code
* -- Patrick Cool <patrick.cool@UGent.be>
**************************************************************************
**************************************************************************
*/
@ -66,17 +66,27 @@
Language Initialisation
-----------------------------------------------------------
*/
// name of the language file that needs to be included
// name of the language file that needs to be included
$language_file = 'forum';
// including the global dokeos file
require ('../inc/global.inc.php');
// the section (tabs)
$this_section=SECTION_COURSES;
// configuration for FCKeditor
$fck_attribute['Width'] = '100%';
$fck_attribute['Height'] = '300';
$fck_attribute['ToolbarSet'] = 'Middle';
$fck_attribute['Config']['IMUploadPath'] = 'upload/forum/';
$fck_attribute['Config']['FlashUploadPath'] = 'upload/forum/';
if(!api_is_allowed_to_edit()) $fck_attribute['Config']['UserStatus'] = 'student';
if(!api_is_allowed_to_edit())
{
$fck_attribute['Config']['UserStatus'] = 'student';
}
// including additional library scripts
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
include_once (api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
$nameTools=get_lang('Forum');
@ -106,11 +116,11 @@ include('forumfunction.inc.php');
Retrieving forum and forum categorie information
-----------------------------------------------------------
*/
// we are getting all the information about the current forum and forum category.
// we are getting all the information about the current forum and forum category.
// note pcool: I tried to use only one sql statement (and function) for this
// but the problem is that the visibility of the forum AND forum cateogory are stored in the item_property table
$current_thread=get_thread_information($_GET['thread']); // note: this has to be validated that it is an existing thread
$current_forum=get_forum_information($current_thread['forum_id']); // note: this has to be validated that it is an existing forum.
$current_forum=get_forum_information($current_thread['forum_id']); // note: this has to be validated that it is an existing forum.
$current_forum_category=get_forumcategory_information($current_forum['forum_category']);
/*
@ -131,7 +141,7 @@ $interbreadcrumb[]=array("url" => "reply.php?forum=".$_GET['forum']."&amp;thread
*/
if (isset($_POST['add_resources']) AND $_POST['add_resources']==get_lang('Resources'))
{
$_SESSION['formelements']=$_POST;
$_SESSION['formelements']=$_POST;
$_SESSION['origin']=$_SERVER['REQUEST_URI'];
$_SESSION['breadcrumbs']=$interbreadcrumb;
header("Location: ../resourcelinker/resourcelinker.php");
@ -147,8 +157,8 @@ if (isset($_POST['add_resources']) AND $_POST['add_resources']==get_lang('Resour
if($origin=='learnpath')
{
include(api_get_path(INCLUDE_PATH).'reduced_header.inc.php');
}
else
}
else
{
Display :: display_header();
api_display_tool_title($nameTools);
@ -157,7 +167,7 @@ else
/*
-----------------------------------------------------------
Is the user allowed here?
Is the user allowed here?
-----------------------------------------------------------
*/
// the user is not allowed here if
@ -165,7 +175,7 @@ else
// 2. the forumcategory, forum or thread is locked (locked <>0)
// 3. if anonymous posts are not allowed
// The only exception is the course manager
// I have split this is several pieces for clarity.
// I have split this is several pieces for clarity.
//if (!api_is_allowed_to_edit() AND (($current_forum_category['visibility']==0 OR $current_forum['visibility']==0) OR ($current_forum_category['locked']<>0 OR $current_forum['locked']<>0 OR $current_thread['locked']<>0)))
if (!api_is_allowed_to_edit() AND (($current_forum_category['visibility']==0 OR $current_forum['visibility']==0)))
{
@ -202,7 +212,7 @@ echo '<span>'.$current_forum_category['cat_comment'].'</span>';
echo "</th>\n";
echo "\t</tr>\n";
// the forum
// the forum
echo "\t<tr class=\"forum_header\">\n";
echo "\t\t<td colspan=\"2\">";
echo '<a href="viewforum.php?forum='.$current_forum['forum_id'].'" '.class_visible_invisible($current_forum['visibility']).'>'.$current_forum['forum_title'].'</a><br />';

@ -65,7 +65,15 @@
*/
// name of the language file that needs to be included
$language_file = 'forum';
// including the global dokeos file
require ('../inc/global.inc.php');
// the section (tabs)
$this_section=SECTION_COURSES;
// including additional library scripts
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
include_once (api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
$nameTools=get_lang('Forum');

@ -22,23 +22,23 @@
*/
/**
* These files are a complete rework of the forum. The database structure is
* These files are a complete rework of the forum. The database structure is
* based on phpBB but all the code is rewritten. A lot of new functionalities
* are added:
* - forum categories and forums can be sorted up or down, locked or made invisible
* - consistent and integrated forum administration
* - forum options: are students allowed to edit their post?
* - forum options: are students allowed to edit their post?
* moderation of posts (approval)
* reply only forums (students cannot create new threads)
* multiple forums per group
* - sticky messages
* - new view option: nested view
* - quoting a message
*
*
* @Author Patrick Cool <patrick.cool@UGent.be>, Ghent University
* @Copyright Ghent University
* @Copyright Patrick Cool
*
*
* @package dokeos.forum
*/
@ -50,7 +50,7 @@
* merge files and test it all over again. So for the moment, please do not
* touch the code
* -- Patrick Cool <patrick.cool@UGent.be>
**************************************************************************
**************************************************************************
*/
/*
@ -63,9 +63,16 @@
Language Initialisation
-----------------------------------------------------------
*/
// name of the language file that needs to be included
// name of the language file that needs to be included
$language_file = 'forum';
// including the global dokeos file
require ('../inc/global.inc.php');
// the section (tabs)
$this_section=SECTION_COURSES;
// including additional library scripts
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
include_once (api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
$nameTools=get_lang('Forum');
@ -117,11 +124,11 @@ $whatsnew_post_info=$_SESSION['whatsnew_post_info'];
/*
-----------------------------------------------------------
Is the user allowed here?
Is the user allowed here?
-----------------------------------------------------------
*/
// if the user is not a course administrator and the forum is hidden
// then the user is not allowed here.
// then the user is not allowed here.
if (!api_is_allowed_to_edit() AND $current_forum_category['visibility']==0)
{
forum_not_allowed_here();
@ -146,7 +153,7 @@ latest changes
*/
// Step 1: We store all the forum categories in an array $forum_categories
$forum_categories=array();
$forum_category=get_forum_categories($_GET['forumcategory']);
$forum_category=get_forum_categories($_GET['forumcategory']);
// step 2: we find all the forums
$forum_list=array();
@ -226,14 +233,14 @@ foreach ($forum_list as $key=>$forum)
$show_forum=false;
// SHOULD WE SHOW THIS PARTICULAR FORUM
// you are teacher => show forum
if (api_is_allowed_to_edit())
{
//echo 'teacher';
$show_forum=true;
}
// you are not a teacher
else
else
{
//echo 'student';
// it is not a group forum => show forum (invisible forums are already left out see get_forums function)
@ -243,7 +250,7 @@ foreach ($forum_list as $key=>$forum)
$show_forum=true;
}
// it is a group forum
else
else
{
//echo '-groepsforum';
// it is a group forum but it is public => show
@ -253,7 +260,7 @@ foreach ($forum_list as $key=>$forum)
//echo '-publiek';
}
// it is a group forum and it is private
else
else
{
//echo '-prive';
// it is a group forum and it is private but the user is member of the group
@ -262,17 +269,17 @@ foreach ($forum_list as $key=>$forum)
//echo '-is lid';
$show_forum=true;
}
else
else
{
//echo '-is GEEN lid';
$show_forum=false;
}
}
}
}
}
//echo '<hr>';
//echo '<hr>';
if ($show_forum)
{
$form_count++;
@ -282,22 +289,22 @@ foreach ($forum_list as $key=>$forum)
{
if (is_array($whatsnew_post_info[$forum['forum_id']]) and !empty($whatsnew_post_info[$forum['forum_id']]))
{
echo icon('../img/forumgroupnew.gif');
echo icon('../img/forumgroupnew.gif');
}
else
else
{
echo icon('../img/forumgroup.gif');
echo icon('../img/forumgroup.gif');
}
}
else
else
{
if (is_array($whatsnew_post_info[$forum['forum_id']]) and !empty($whatsnew_post_info[$forum['forum_id']]))
{
echo icon('../img/forum.gif');
echo icon('../img/forum.gif');
}
else
else
{
echo icon('../img/forum.gif');
echo icon('../img/forum.gif');
}
}
echo "</td>\n";
@ -310,13 +317,13 @@ foreach ($forum_list as $key=>$forum)
if ($forum['last_poster_name']<>'')
{
$name=$forum['last_poster_name'];
$poster_id=0;
$poster_id=0;
}
else
else
{
$name=$forum['last_poster_firstname'].' '.$forum['last_poster_lastname'];
$poster_id=$forum['last_poster_id'];
}
}
echo "\t\t<td>";
if (!empty($forum['last_post_id']))
{

@ -65,7 +65,14 @@
*/
// name of the language file that needs to be included
$language_file = 'forum';
// including the global dokeos file
require ('../inc/global.inc.php');
// the section (tabs)
$this_section=SECTION_COURSES;
// including additional library scripts
require_once (api_get_path(LIBRARY_PATH).'formvalidator/FormValidator.class.php');
include_once (api_get_path(LIBRARY_PATH).'groupmanager.lib.php');
//require_once (api_get_path(LIBRARY_PATH).'resourcelinker.lib.php');

Loading…
Cancel
Save