diff --git a/main/forum/editpost.php b/main/forum/editpost.php index 35b0bb0e06..ba2ff26c26 100644 --- a/main/forum/editpost.php +++ b/main/forum/editpost.php @@ -1,10 +1,13 @@ -\n"; // the forum category -echo "\t\n\t\t"; +echo "\t\n\t\t"; echo ''.prepare4display($current_forum['forum_title']).'
'; echo ''.prepare4display($current_forum['forum_comment']).'';echo "\n"; echo "\n"; @@ -212,11 +215,6 @@ if (!empty($values) and $_POST['SubmitPost']) } -/* -============================================================================== - FOOTER -============================================================================== -*/ - +// footer Display :: display_footer(); ?> \ No newline at end of file diff --git a/main/forum/forumfunction.inc.php b/main/forum/forumfunction.inc.php index 301a668b06..a44c7f1678 100644 --- a/main/forum/forumfunction.inc.php +++ b/main/forum/forumfunction.inc.php @@ -1,3421 +1,3423 @@ -, Ghent University -* @copyright Ghent University -* @copyright Patrick Cool -* @author Julio Montoya , Dokeos Several fixes -* @package dokeos.forum -* -* @todo several functions have to be moved to the itemmanager library -* @todo displaying icons => display library -* @todo complete the missing phpdoc the correct order should be -* -* some explanation of the function -* -* @param -* @return -* - @todo -* -* @author firstname lastname , organisation -* @version (day) month year -* -* @deprecated -*/ - -/** - ************************************************************************** - * IMPORTANT NOTICE - * Please do not change anything is this code yet because there are still - * some significant code that need to happen and I do not have the time to - * merge files and test it all over again. So for the moment, please do not - * touch the code - * -- Patrick Cool - ************************************************************************** -*/ -require_once(api_get_path(INCLUDE_PATH).'/lib/mail.lib.inc.php'); -require_once(api_get_path(INCLUDE_PATH).'/conf/mail.conf.php'); -require_once(api_get_path(INCLUDE_PATH).'/lib/usermanager.lib.php'); +, Ghent University +* @copyright Ghent University +* @copyright Patrick Cool +* @author Julio Montoya , Dokeos Several fixes +* @package dokeos.forum +* +* @todo several functions have to be moved to the itemmanager library +* @todo displaying icons => display library +* @todo complete the missing phpdoc the correct order should be +* +* some explanation of the function +* +* @param +* @return +* + @todo +* +* @author firstname lastname , organisation +* @version (day) month year +* +* @deprecated +*/ + +/** + ************************************************************************** + * IMPORTANT NOTICE + * Please do not change anything is this code yet because there are still + * some significant code that need to happen and I do not have the time to + * merge files and test it all over again. So for the moment, please do not + * touch the code + * -- Patrick Cool + ************************************************************************** +*/ +require_once(api_get_path(INCLUDE_PATH).'/lib/mail.lib.inc.php'); +require_once(api_get_path(INCLUDE_PATH).'/conf/mail.conf.php'); +require_once(api_get_path(INCLUDE_PATH).'/lib/usermanager.lib.php'); get_notifications_of_user(); -/** -* This function handles all the forum and forumcategories actions. This is a wrapper for the -* forum and forum categories. All this code code could go into the section where this function is -* called but this make the code there cleaner. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function handle_forum_and_forumcategories() -{ - // Adding a forum category - if (($_GET['action']=='add' AND $_GET['content']=='forumcategory') OR $_POST['SubmitForumCategory'] ) - { - show_add_forumcategory_form(); - } - // Adding a forum - if ((($_GET['action']=='add' OR $_GET['action']=='edit') AND $_GET['content']=='forum') OR $_POST['SubmitForum'] ) - { - if ($_GET['action']=='edit' and isset($_GET['id']) OR $_POST['SubmitForum'] ) - { - $inputvalues=get_forums(strval(intval($_GET['id']))); // note: this has to be cleaned first - } - show_add_forum_form($inputvalues); - } - // Edit a forum category - if (($_GET['action']=='edit' AND $_GET['content']=='forumcategory' AND isset($_GET['id'])) OR $_POST['SubmitEditForumCategory'] ) - { - $forum_category=get_forum_categories(strval(intval($_GET['id']))); // note: this has to be cleaned first - show_edit_forumcategory_form($forum_category); - } - // Delete a forum category - if ($_GET['action']=='delete' AND isset($_GET['content']) AND isset($_GET['id'])) - { - $return_message=delete_forum_forumcategory_thread($_GET['content'],$_GET['id']);// note: this has to be cleaned first - Display :: display_confirmation_message($return_message,false); - - } - // Change visibility of a forum or a forum category - if (($_GET['action']=='invisible' OR $_GET['action']=='visible') AND isset($_GET['content']) AND isset($_GET['id'])) - { - $return_message=change_visibility($_GET['content'], $_GET['id'],$_GET['action']);// note: this has to be cleaned first - Display :: display_confirmation_message($return_message,false); - } - // Change lock status of a forum or a forum category - if (($_GET['action']=='lock' OR $_GET['action']=='unlock') AND isset($_GET['content']) AND isset($_GET['id'])) - { - $return_message=change_lock_status($_GET['content'], $_GET['id'],$_GET['action']);// note: this has to be cleaned first - Display :: display_confirmation_message($return_message,false); - } - // Move a forum or a forum category - if ($_GET['action']=='move' AND isset($_GET['content']) AND isset($_GET['id']) AND isset($_GET['direction'])) - { - $return_message=move_up_down($_GET['content'], $_GET['direction'], $_GET['id']);// note: this has to be cleaned first - Display :: display_confirmation_message($return_message,false); - } - -} - -/** -* This function displays the form that is used to add a forum category. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function show_add_forumcategory_form($inputvalues=array()) -{ - // initiate the object - $form = new FormValidator('forumcategory'); - - // settting the form elements - $form->addElement('header', '', get_lang('AddForumCategory')); - $form->addElement('text', 'forum_category_title', get_lang('Title'),'class="input_titles"'); - $form->addElement('html_editor', 'forum_category_comment', get_lang('Comment')); - $form->addElement('submit', 'SubmitForumCategory', get_lang('OK')); - - // setting the rules - $form->addRule('forum_category_title', '
'.get_lang('ThisFieldIsRequired'), 'required'); - - // The validation or display - if( $form->validate() ) - { - $values = $form->exportValues(); - store_forumcategory($values); - } - else - { - $form->display(); - } -} - - -/** -* This function displays the form that is used to add a forum category. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function show_add_forum_form($inputvalues=array()) -{ - global $_course; - - // initiate the object - $form = new FormValidator('forumcategory', 'post', 'index.php'); - - // the header for the form - $session_header = isset($_SESSION['session_name']) ? ' ('.$_SESSION['session_name'].') ' : ''; - $form->addElement('header', '', get_lang('AddForum').$session_header); - - // we have a hidden field if we are editing - if (is_array($inputvalues)) - { - $form->addElement('hidden', 'forum_id', $inputvalues['forum_id']); - } - - // The title of the forum - $form->addElement('text', 'forum_title', get_lang('Title'),'class="input_titles"'); - - // The comment of the forum - $form->addElement('html_editor', 'forum_comment', get_lang('Comment')); - - // dropdown list: Forum Categories - $forum_categories=get_forum_categories(); - foreach ($forum_categories as $key=>$value) - { - $forum_categories_titles[$value['cat_id']]=$value['cat_title']; - } - $form->addElement('select', 'forum_category', get_lang('InForumCategory'), $forum_categories_titles); - - if ($_course['visibility']==COURSE_VISIBILITY_OPEN_WORLD) - { - // This is for vertical - //$form->addElement('radio', 'allow_anonymous', get_lang('AllowAnonymousPosts'), get_lang('Yes'), 1); - //$form->addElement('radio', 'allow_anonymous', '', get_lang('No'), 0); - // This is for horizontal - $group=''; - $group[] =& HTML_QuickForm::createElement('radio', 'allow_anonymous',null,get_lang('Yes'),1); - $group[] =& HTML_QuickForm::createElement('radio', 'allow_anonymous',null,get_lang('No'),0); - $form->addGroup($group, 'allow_anonymous_group', get_lang('AllowAnonymousPosts'), ' '); - } - - // This is for vertical - //$form->addElement('radio', 'students_can_edit', get_lang('StudentsCanEdit'), get_lang('Yes'), 1); - //$form->addElement('radio', 'students_can_edit', '', get_lang('No'), 0); - // This is for horizontal - $group=''; - $group[] =& HTML_QuickForm::createElement('radio', 'students_can_edit',null,get_lang('Yes'),1); - $group[] =& HTML_QuickForm::createElement('radio', 'students_can_edit',null,get_lang('No'),0); - $form->addGroup($group, 'students_can_edit_group', get_lang('StudentsCanEdit'), ' '); - - // This is for vertical - //$form->addElement('radio', 'approval_direct', get_lang('ApprovalDirect'), get_lang('Approval'), 1); - //$form->addElement('radio', 'approval_direct', '', get_lang('Direct'), 0); - // This is for horizontal - $group=''; - $group[] =& HTML_QuickForm::createElement('radio', 'approval_direct',null,get_lang('Approval'),1); - $group[] =& HTML_QuickForm::createElement('radio', 'approval_direct',null,get_lang('Direct'),0); - //$form->addGroup($group, 'approval_direct_group', get_lang('ApprovalDirect'), ' '); - - // This is for vertical - //$form->addElement('radio', 'allow_attachments', get_lang('AllowAttachments'), get_lang('Yes'), 1); - //$form->addElement('radio', 'allow_attachments', '', get_lang('No'), 0); - // This is for horizontal - $group=''; - $group[] =& HTML_QuickForm::createElement('radio', 'allow_attachments',null,get_lang('Yes'),1); - $group[] =& HTML_QuickForm::createElement('radio', 'allow_attachments',null,get_lang('No'),0); - //$form->addGroup($group, 'allow_attachments_group', get_lang('AllowAttachments'), ' '); - - // This is for vertical - //$form->addElement('radio', 'allow_new_threads', get_lang('AllowNewThreads'), 1, get_lang('Yes')); - //$form->addElement('radio', 'allow_new_threads', '', 0, get_lang('No')); - // This is for horizontal - $group=''; - $group[] =& HTML_QuickForm::createElement('radio', 'allow_new_threads',null, get_lang('Yes'),1); - $group[] =& HTML_QuickForm::createElement('radio', 'allow_new_threads',null, get_lang('No'),0); - $form->addGroup($group, 'allow_new_threads_group', get_lang('AllowNewThreads'), ' '); - - $group=''; - $group[] =& HTML_QuickForm::createElement('radio', 'default_view_type', null, get_lang('Flat'), 'flat'); - $group[] =& HTML_QuickForm::createElement('radio', 'default_view_type', null, get_lang('Threaded'), 'threaded'); - $group[] =& HTML_QuickForm::createElement('radio', 'default_view_type', null, get_lang('Nested'), 'nested'); - $form->addGroup($group, 'default_view_type_group', get_lang('DefaultViewType'), ' '); - - - $form->addElement('static','Group', '
'.get_lang('GroupSettings').''); - - // dropdown list: Groups - $groups=GroupManager::get_group_list(); - $groups_titles[0]=get_lang('NotAGroupForum'); - foreach ($groups as $key=>$value) - { - $groups_titles[$value['id']]=$value['name']; - } - $form->addElement('select', 'group_forum', get_lang('ForGroup'), $groups_titles); - - // Public or private group forum - $group=''; - $group[] =& HTML_QuickForm::createElement('radio', 'public_private_group_forum', null, get_lang('Public'), 'public'); - $group[] =& HTML_QuickForm::createElement('radio', 'public_private_group_forum', null, get_lang('Private'), 'private'); - $form->addGroup($group, 'public_private_group_forum_group', get_lang('PublicPrivateGroupForum'), ' '); - - // The OK button - $form->addElement('submit', 'SubmitForum', get_lang('OK')); - // setting the rules - $form->addRule('forum_title', get_lang('ThisFieldIsRequired'), 'required'); - $form->addRule('forum_category', get_lang('ThisFieldIsRequired'), 'required'); - - global $charset; - - // settings the defaults - if (!is_array($inputvalues)) - { - $defaults['allow_anonymous_group']['allow_anonymous']=0; - $defaults['students_can_edit_group']['students_can_edit']=0; - $defaults['approval_direct_group']['approval_direct']=0; - $defaults['allow_attachments_group']['allow_attachments']=1; - //since 1.8.6, new threads are disabled by default upon forum creation - $defaults['allow_new_threads_group']['allow_new_threads']=0; - $defaults['default_view_type_group']['default_view_type']=api_get_setting('default_forum_view'); - $defaults['public_private_group_forum_group']['public_private_group_forum']='public'; - if (isset($_GET['forumcategory'])) - { - $defaults['forum_category']=$_GET['forumcategory']; - } - } - else // the default values when editing = the data in the table - { - $defaults['forum_id']=$inputvalues['forum_id']; - $defaults['forum_title']=prepare4display(html_entity_decode($inputvalues['forum_title'],ENT_QUOTES,$charset)); - $defaults['forum_comment']=prepare4display($inputvalues['forum_comment']); - $defaults['forum_category']=$inputvalues['forum_category']; - $defaults['allow_anonymous_group']['allow_anonymous']=$inputvalues['allow_anonymous']; - $defaults['students_can_edit_group']['students_can_edit']=$inputvalues['allow_edit']; - $defaults['approval_direct_group']['approval_direct']=$inputvalues['approval_direct_post']; - $defaults['allow_attachments_group']['allow_attachments']=$inputvalues['allow_attachments']; - $defaults['allow_new_threads_group']['allow_new_threads']=$inputvalues['allow_new_threads']; - $defaults['default_view_type_group']['default_view_type']=$inputvalues['default_view']; - $defaults['public_private_group_forum_group']['public_private_group_forum']=$inputvalues['forum_group_public_private']; - $defaults['group_forum']=$inputvalues['forum_of_group']; - } - $form->setDefaults($defaults); - - - // The validation or display - if( $form->validate() ) - { - $values = $form->exportValues(); - store_forum($values); - } - else - { - $form->display(); - } -} - - - -/** -* This function displays the form that is used to edit a forum category. -* This is more or less a copy from the show_add_forumcategory_form function with the only difference that is uses -* some default values. I tried to have both in one function but this gave problems with the handle_forum_and_forumcategories function -* (storing was done twice) -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function show_edit_forumcategory_form($inputvalues=array()) -{ - // initiate the object - $form = new FormValidator('forumcategory'); - - // settting the form elements - $form->addElement('header', '', get_lang('EditForumCategory')); - $form->addElement('hidden', 'forum_category_id'); - $form->addElement('text', 'forum_category_title', get_lang('Title'),'class="input_titles"'); - $form->addElement('html_editor', 'forum_category_comment', get_lang('Comment')); - $form->addElement('submit', 'SubmitEditForumCategory', get_lang('OK')); - global $charset; - // setting the default values - $defaultvalues['forum_category_id']=$inputvalues['cat_id']; - $defaultvalues['forum_category_title']=prepare4display(html_entity_decode($inputvalues['cat_title'],ENT_QUOTES,$charset)); - $defaultvalues['forum_category_comment']=prepare4display($inputvalues['cat_comment']); - $form->setDefaults($defaultvalues); - - // setting the rules - $form->addRule('forum_category_title', get_lang('ThisFieldIsRequired'), 'required'); - - // The validation or display - if( $form->validate() ) - { - $values = $form->exportValues(); - store_forumcategory($values); - } - else - { - $form->display(); - } -} - - - -/** -* This function stores the forum category in the database. The new category is added to the end. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function store_forumcategory($values) -{ - $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); - global $_course; - global $_user; - - // find the max cat_order. The new forum category is added at the end => max cat_order + & - $sql="SELECT MAX(cat_order) as sort_max FROM ".Database::escape_string($table_categories); - $result=api_sql_query($sql,__FILE__,__LINE__); - $row=Database::fetch_array($result); - $new_max=$row['sort_max']+1; - - $clean_cat_title=Security::remove_XSS(Database::escape_string($values['forum_category_title'])); - - if (isset($values['forum_category_id'])) - { // storing an edit - $sql="UPDATE ".$table_categories." SET cat_title='".$clean_cat_title."', cat_comment='".Database::escape_string($values['forum_category_comment'])."' WHERE cat_id='".Database::escape_string($values['forum_category_id'])."'"; - api_sql_query($sql,__FILE__,__LINE__); - $last_id=Database::get_last_insert_id(); - $my_user_id = api_get_user_id(); - api_item_property_update($_course, TOOL_FORUM_CATEGORY, $values['forum_category_id'],"ForumCategoryAdded",$my_user_id ); - $return_message=get_lang('ForumCategoryEdited'); - } - else - { - $sql="INSERT INTO ".$table_categories." (cat_title, cat_comment, cat_order, session_id) VALUES ('".$clean_cat_title."','".Database::escape_string($values['forum_category_comment'])."','".Database::escape_string($new_max)."',".intval($_SESSION['id_session']).")"; - api_sql_query($sql,__FILE__,__LINE__); - $last_id=Database::get_last_insert_id(); - $my_user_id = api_get_user_id(); - api_item_property_update($_course, TOOL_FORUM_CATEGORY, $last_id,"ForumCategoryAdded", $my_user_id); - $return_message=get_lang('ForumCategoryAdded'); - } - - Display :: display_confirmation_message($return_message); -} - -/** -* This function delete the forum image if exists -* -* @param int forum id -* @return boolean true if success -* -* @author Julio Montoya , Dokeos -* @version October 2008, dokeos 1.8.6 -*/ -function delete_forum_image($forum_id) -{ - $table_forums = Database::get_course_table(TABLE_FORUM); echo '
'; - $sql="SELECT forum_image FROM $table_forums WHERE forum_id = '$forum_id' "; - $result=api_sql_query($sql,__FILE__,__LINE__); - $row=Database::fetch_array($result); - if ($row['forum_image']!='') - { - $del_file = api_get_path(SYS_COURSE_PATH).api_get_course_path().'/upload/forum/images/'.$row['forum_image']; - return @unlink($del_file); - } - else - { - return false; - } - -} -/** -* This function stores the forum in the database. The new forum is added to the end. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function store_forum($values) -{ - global $_course; - global $_user; +/** +* This function handles all the forum and forumcategories actions. This is a wrapper for the +* forum and forum categories. All this code code could go into the section where this function is +* called but this make the code there cleaner. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function handle_forum_and_forumcategories() +{ + // Adding a forum category + if (($_GET['action']=='add' AND $_GET['content']=='forumcategory') OR $_POST['SubmitForumCategory'] ) + { + show_add_forumcategory_form(); + } + // Adding a forum + if ((($_GET['action']=='add' OR $_GET['action']=='edit') AND $_GET['content']=='forum') OR $_POST['SubmitForum'] ) + { + if ($_GET['action']=='edit' and isset($_GET['id']) OR $_POST['SubmitForum'] ) + { + $inputvalues=get_forums(strval(intval($_GET['id']))); // note: this has to be cleaned first + } + show_add_forum_form($inputvalues); + } + // Edit a forum category + if (($_GET['action']=='edit' AND $_GET['content']=='forumcategory' AND isset($_GET['id'])) OR $_POST['SubmitEditForumCategory'] ) + { + $forum_category=get_forum_categories(strval(intval($_GET['id']))); // note: this has to be cleaned first + show_edit_forumcategory_form($forum_category); + } + // Delete a forum category + if ($_GET['action']=='delete' AND isset($_GET['content']) AND isset($_GET['id'])) + { + $return_message=delete_forum_forumcategory_thread($_GET['content'],$_GET['id']);// note: this has to be cleaned first + Display :: display_confirmation_message($return_message,false); + + } + // Change visibility of a forum or a forum category + if (($_GET['action']=='invisible' OR $_GET['action']=='visible') AND isset($_GET['content']) AND isset($_GET['id'])) + { + $return_message=change_visibility($_GET['content'], $_GET['id'],$_GET['action']);// note: this has to be cleaned first + Display :: display_confirmation_message($return_message,false); + } + // Change lock status of a forum or a forum category + if (($_GET['action']=='lock' OR $_GET['action']=='unlock') AND isset($_GET['content']) AND isset($_GET['id'])) + { + $return_message=change_lock_status($_GET['content'], $_GET['id'],$_GET['action']);// note: this has to be cleaned first + Display :: display_confirmation_message($return_message,false); + } + // Move a forum or a forum category + if ($_GET['action']=='move' AND isset($_GET['content']) AND isset($_GET['id']) AND isset($_GET['direction'])) + { + $return_message=move_up_down($_GET['content'], $_GET['direction'], $_GET['id']);// note: this has to be cleaned first + Display :: display_confirmation_message($return_message,false); + } + +} + +/** +* This function displays the form that is used to add a forum category. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function show_add_forumcategory_form($inputvalues=array()) +{ + // initiate the object + $form = new FormValidator('forumcategory'); + + // settting the form elements + $form->addElement('header', '', get_lang('AddForumCategory')); + $form->addElement('text', 'forum_category_title', get_lang('Title'),'class="input_titles"'); + $form->addElement('html_editor', 'forum_category_comment', get_lang('Comment')); + $form->addElement('submit', 'SubmitForumCategory', get_lang('OK')); + + // setting the rules + $form->addRule('forum_category_title', '
'.get_lang('ThisFieldIsRequired'), 'required'); + + // The validation or display + if( $form->validate() ) + { + $values = $form->exportValues(); + store_forumcategory($values); + } + else + { + $form->display(); + } +} + + +/** +* This function displays the form that is used to add a forum category. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function show_add_forum_form($inputvalues=array()) +{ + global $_course; + + // initiate the object + $form = new FormValidator('forumcategory', 'post', 'index.php'); + + // the header for the form + $session_header = isset($_SESSION['session_name']) ? ' ('.$_SESSION['session_name'].') ' : ''; + $form->addElement('header', '', get_lang('AddForum').$session_header); + + // we have a hidden field if we are editing + if (is_array($inputvalues)) + { + $form->addElement('hidden', 'forum_id', $inputvalues['forum_id']); + } + + // The title of the forum + $form->addElement('text', 'forum_title', get_lang('Title'),'class="input_titles"'); + + // The comment of the forum + $form->addElement('html_editor', 'forum_comment', get_lang('Comment')); + + // dropdown list: Forum Categories + $forum_categories=get_forum_categories(); + foreach ($forum_categories as $key=>$value) + { + $forum_categories_titles[$value['cat_id']]=$value['cat_title']; + } + $form->addElement('select', 'forum_category', get_lang('InForumCategory'), $forum_categories_titles); + + if ($_course['visibility']==COURSE_VISIBILITY_OPEN_WORLD) + { + // This is for vertical + //$form->addElement('radio', 'allow_anonymous', get_lang('AllowAnonymousPosts'), get_lang('Yes'), 1); + //$form->addElement('radio', 'allow_anonymous', '', get_lang('No'), 0); + // This is for horizontal + $group=''; + $group[] =& HTML_QuickForm::createElement('radio', 'allow_anonymous',null,get_lang('Yes'),1); + $group[] =& HTML_QuickForm::createElement('radio', 'allow_anonymous',null,get_lang('No'),0); + $form->addGroup($group, 'allow_anonymous_group', get_lang('AllowAnonymousPosts'), ' '); + } + + // This is for vertical + //$form->addElement('radio', 'students_can_edit', get_lang('StudentsCanEdit'), get_lang('Yes'), 1); + //$form->addElement('radio', 'students_can_edit', '', get_lang('No'), 0); + // This is for horizontal + $group=''; + $group[] =& HTML_QuickForm::createElement('radio', 'students_can_edit',null,get_lang('Yes'),1); + $group[] =& HTML_QuickForm::createElement('radio', 'students_can_edit',null,get_lang('No'),0); + $form->addGroup($group, 'students_can_edit_group', get_lang('StudentsCanEdit'), ' '); + + // This is for vertical + //$form->addElement('radio', 'approval_direct', get_lang('ApprovalDirect'), get_lang('Approval'), 1); + //$form->addElement('radio', 'approval_direct', '', get_lang('Direct'), 0); + // This is for horizontal + $group=''; + $group[] =& HTML_QuickForm::createElement('radio', 'approval_direct',null,get_lang('Approval'),1); + $group[] =& HTML_QuickForm::createElement('radio', 'approval_direct',null,get_lang('Direct'),0); + //$form->addGroup($group, 'approval_direct_group', get_lang('ApprovalDirect'), ' '); + + // This is for vertical + //$form->addElement('radio', 'allow_attachments', get_lang('AllowAttachments'), get_lang('Yes'), 1); + //$form->addElement('radio', 'allow_attachments', '', get_lang('No'), 0); + // This is for horizontal + $group=''; + $group[] =& HTML_QuickForm::createElement('radio', 'allow_attachments',null,get_lang('Yes'),1); + $group[] =& HTML_QuickForm::createElement('radio', 'allow_attachments',null,get_lang('No'),0); + //$form->addGroup($group, 'allow_attachments_group', get_lang('AllowAttachments'), ' '); + + // This is for vertical + //$form->addElement('radio', 'allow_new_threads', get_lang('AllowNewThreads'), 1, get_lang('Yes')); + //$form->addElement('radio', 'allow_new_threads', '', 0, get_lang('No')); + // This is for horizontal + $group=''; + $group[] =& HTML_QuickForm::createElement('radio', 'allow_new_threads',null, get_lang('Yes'),1); + $group[] =& HTML_QuickForm::createElement('radio', 'allow_new_threads',null, get_lang('No'),0); + $form->addGroup($group, 'allow_new_threads_group', get_lang('AllowNewThreads'), ' '); + + $group=''; + $group[] =& HTML_QuickForm::createElement('radio', 'default_view_type', null, get_lang('Flat'), 'flat'); + $group[] =& HTML_QuickForm::createElement('radio', 'default_view_type', null, get_lang('Threaded'), 'threaded'); + $group[] =& HTML_QuickForm::createElement('radio', 'default_view_type', null, get_lang('Nested'), 'nested'); + $form->addGroup($group, 'default_view_type_group', get_lang('DefaultViewType'), ' '); + + + $form->addElement('static','Group', '
'.get_lang('GroupSettings').''); + + // dropdown list: Groups + $groups=GroupManager::get_group_list(); + $groups_titles[0]=get_lang('NotAGroupForum'); + foreach ($groups as $key=>$value) + { + $groups_titles[$value['id']]=$value['name']; + } + $form->addElement('select', 'group_forum', get_lang('ForGroup'), $groups_titles); + + // Public or private group forum + $group=''; + $group[] =& HTML_QuickForm::createElement('radio', 'public_private_group_forum', null, get_lang('Public'), 'public'); + $group[] =& HTML_QuickForm::createElement('radio', 'public_private_group_forum', null, get_lang('Private'), 'private'); + $form->addGroup($group, 'public_private_group_forum_group', get_lang('PublicPrivateGroupForum'), ' '); + + // The OK button + $form->addElement('submit', 'SubmitForum', get_lang('OK')); + // setting the rules + $form->addRule('forum_title', get_lang('ThisFieldIsRequired'), 'required'); + $form->addRule('forum_category', get_lang('ThisFieldIsRequired'), 'required'); + + global $charset; + + // settings the defaults + if (!is_array($inputvalues)) + { + $defaults['allow_anonymous_group']['allow_anonymous']=0; + $defaults['students_can_edit_group']['students_can_edit']=0; + $defaults['approval_direct_group']['approval_direct']=0; + $defaults['allow_attachments_group']['allow_attachments']=1; + //since 1.8.6, new threads are disabled by default upon forum creation + $defaults['allow_new_threads_group']['allow_new_threads']=0; + $defaults['default_view_type_group']['default_view_type']=api_get_setting('default_forum_view'); + $defaults['public_private_group_forum_group']['public_private_group_forum']='public'; + if (isset($_GET['forumcategory'])) + { + $defaults['forum_category']=$_GET['forumcategory']; + } + } + else // the default values when editing = the data in the table + { + $defaults['forum_id']=$inputvalues['forum_id']; + $defaults['forum_title']=prepare4display(html_entity_decode($inputvalues['forum_title'],ENT_QUOTES,$charset)); + $defaults['forum_comment']=prepare4display($inputvalues['forum_comment']); + $defaults['forum_category']=$inputvalues['forum_category']; + $defaults['allow_anonymous_group']['allow_anonymous']=$inputvalues['allow_anonymous']; + $defaults['students_can_edit_group']['students_can_edit']=$inputvalues['allow_edit']; + $defaults['approval_direct_group']['approval_direct']=$inputvalues['approval_direct_post']; + $defaults['allow_attachments_group']['allow_attachments']=$inputvalues['allow_attachments']; + $defaults['allow_new_threads_group']['allow_new_threads']=$inputvalues['allow_new_threads']; + $defaults['default_view_type_group']['default_view_type']=$inputvalues['default_view']; + $defaults['public_private_group_forum_group']['public_private_group_forum']=$inputvalues['forum_group_public_private']; + $defaults['group_forum']=$inputvalues['forum_of_group']; + } + $form->setDefaults($defaults); + + + // The validation or display + if( $form->validate() ) + { + $values = $form->exportValues(); + store_forum($values); + } + else + { + $form->display(); + } +} + + + +/** +* This function displays the form that is used to edit a forum category. +* This is more or less a copy from the show_add_forumcategory_form function with the only difference that is uses +* some default values. I tried to have both in one function but this gave problems with the handle_forum_and_forumcategories function +* (storing was done twice) +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function show_edit_forumcategory_form($inputvalues=array()) +{ + // initiate the object + $form = new FormValidator('forumcategory'); + + // settting the form elements + $form->addElement('header', '', get_lang('EditForumCategory')); + $form->addElement('hidden', 'forum_category_id'); + $form->addElement('text', 'forum_category_title', get_lang('Title'),'class="input_titles"'); + $form->addElement('html_editor', 'forum_category_comment', get_lang('Comment')); + $form->addElement('submit', 'SubmitEditForumCategory', get_lang('OK')); + global $charset; + // setting the default values + $defaultvalues['forum_category_id']=$inputvalues['cat_id']; + $defaultvalues['forum_category_title']=prepare4display(html_entity_decode($inputvalues['cat_title'],ENT_QUOTES,$charset)); + $defaultvalues['forum_category_comment']=prepare4display($inputvalues['cat_comment']); + $form->setDefaults($defaultvalues); + + // setting the rules + $form->addRule('forum_category_title', get_lang('ThisFieldIsRequired'), 'required'); + + // The validation or display + if( $form->validate() ) + { + $values = $form->exportValues(); + store_forumcategory($values); + } + else + { + $form->display(); + } +} + + + +/** +* This function stores the forum category in the database. The new category is added to the end. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function store_forumcategory($values) +{ + $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); + global $_course; + global $_user; + + // find the max cat_order. The new forum category is added at the end => max cat_order + & + $sql="SELECT MAX(cat_order) as sort_max FROM ".Database::escape_string($table_categories); + $result=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($result); + $new_max=$row['sort_max']+1; + + $clean_cat_title=Security::remove_XSS(Database::escape_string($values['forum_category_title'])); + + if (isset($values['forum_category_id'])) + { // storing an edit + $sql="UPDATE ".$table_categories." SET cat_title='".$clean_cat_title."', cat_comment='".Database::escape_string($values['forum_category_comment'])."' WHERE cat_id='".Database::escape_string($values['forum_category_id'])."'"; + api_sql_query($sql,__FILE__,__LINE__); + $last_id=Database::get_last_insert_id(); + $my_user_id = api_get_user_id(); + api_item_property_update($_course, TOOL_FORUM_CATEGORY, $values['forum_category_id'],"ForumCategoryAdded",$my_user_id ); + $return_message=get_lang('ForumCategoryEdited'); + } + else + { + $sql="INSERT INTO ".$table_categories." (cat_title, cat_comment, cat_order, session_id) VALUES ('".$clean_cat_title."','".Database::escape_string($values['forum_category_comment'])."','".Database::escape_string($new_max)."',".intval($_SESSION['id_session']).")"; + api_sql_query($sql,__FILE__,__LINE__); + $last_id=Database::get_last_insert_id(); + $my_user_id = api_get_user_id(); + api_item_property_update($_course, TOOL_FORUM_CATEGORY, $last_id,"ForumCategoryAdded", $my_user_id); + $return_message=get_lang('ForumCategoryAdded'); + } + + Display :: display_confirmation_message($return_message); +} + +/** +* This function delete the forum image if exists +* +* @param int forum id +* @return boolean true if success +* +* @author Julio Montoya , Dokeos +* @version October 2008, dokeos 1.8.6 +*/ +function delete_forum_image($forum_id) +{ + $table_forums = Database::get_course_table(TABLE_FORUM); echo '
'; + $sql="SELECT forum_image FROM $table_forums WHERE forum_id = '$forum_id' "; + $result=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($result); + if ($row['forum_image']!='') + { + $del_file = api_get_path(SYS_COURSE_PATH).api_get_course_path().'/upload/forum/images/'.$row['forum_image']; + return @unlink($del_file); + } + else + { + return false; + } + +} +/** +* This function stores the forum in the database. The new forum is added to the end. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function store_forum($values) +{ + global $_course; + global $_user; $table_forums = Database::get_course_table(TABLE_FORUM); - - // find the max forum_order for the given category. The new forum is added at the end => max cat_order + & - $sql="SELECT MAX(forum_order) as sort_max FROM ".$table_forums." WHERE forum_category=".Database::escape_string($values['forum_category']); - $result=api_sql_query($sql,__FILE__,__LINE__); - $row=Database::fetch_array($result); - $new_max=$row['sort_max']+1; - $session_id = isset($_SESSION['id_session']) ? $_SESSION['id_session'] : 0; - - $clean_title=Security::remove_XSS(Database::escape_string(htmlspecialchars($values['forum_title']))); - - $image_moved=false; - if(!empty($_FILES['picture']['name'])) - { - $upload_ok = process_uploaded_file($_FILES['picture']); - $has_attachment=true; - } - else - { - $image_moved=true; - } - - // remove existing picture if asked - if ($values['remove_picture']) - { - delete_forum_image($values['forum_id']); - } - - - if($upload_ok) - { - if ($has_attachment) - { - $courseDir = $_course['path'].'/upload/forum/images'; - $sys_course_path = api_get_path(SYS_COURSE_PATH); - $updir = $sys_course_path.$courseDir; - - // Try to add an extension to the file if it hasn't one - $new_file_name = add_ext_on_mime(stripslashes($_FILES['picture']['name']), $_FILES['picture']['type']); - - // user's file name - $file_name =$_FILES['picture']['name']; - - if (!filter_extension($new_file_name)) - { - //Display :: display_error_message(get_lang('UplUnableToSaveFileFilteredExtension')); - $image_moved=false; - } - else - { - $file_extension = explode('.', $_FILES['picture']['name']); - $file_extension = strtolower($file_extension[sizeof($file_extension) - 1]); - $new_file_name = uniqid('').'.'.$file_extension; - $new_path=$updir.'/'.$new_file_name; - $result= @move_uploaded_file($_FILES['picture']['tmp_name'], $new_path); - // Storing the attachments if any - if ($result) - { - $image_moved=true; - } - } - } - } - - if (isset($values['forum_id'])) - { - $sql_image=''; - if ($image_moved) - { - $sql_image=" forum_image='".Database::escape_string($new_file_name)."', "; - delete_forum_image($values['forum_id']); - } - - // storing an edit - $sql="UPDATE ".$table_forums." SET - forum_title='".$clean_title."', - ".$sql_image." - forum_comment='".Database::escape_string($values['forum_comment'])."', - forum_category='".Database::escape_string($values['forum_category'])."', - allow_anonymous='".Database::escape_string($values['allow_anonymous_group']['allow_anonymous'])."', - allow_edit='".Database::escape_string($values['students_can_edit_group']['students_can_edit'])."', - approval_direct_post='".Database::escape_string($values['approval_direct_group']['approval_direct'])."', - allow_attachments='".Database::escape_string($values['allow_attachments_group']['allow_attachments'])."', - allow_new_threads='".Database::escape_string($values['allow_new_threads_group']['allow_new_threads'])."', - forum_group_public_private='".Database::escape_string($values['public_private_group_forum_group']['public_private_group_forum'])."', - default_view='".Database::escape_string($values['default_view_type_group']['default_view_type'])."', - forum_of_group='".Database::escape_string($values['group_forum'])."' - WHERE forum_id='".Database::escape_string($values['forum_id'])."'"; - api_sql_query($sql,__FILE__,__LINE__); - $return_message=get_lang('ForumEdited'); - } - else - { - $sql_image=''; - if ($image_moved) - { - $sql_image="'".$new_file_name."', "; - } - - $sql="INSERT INTO ".$table_forums." - (forum_title, forum_image, forum_comment, forum_category, allow_anonymous, allow_edit, approval_direct_post, allow_attachments, allow_new_threads, default_view, forum_of_group, forum_group_public_private, forum_order, session_id) - VALUES ('".$clean_title."', - ".$sql_image." - '".Database::escape_string($values['forum_comment'])."', - '".Database::escape_string($values['forum_category'])."', - '".Database::escape_string($values['allow_anonymous_group']['allow_anonymous'])."', - '".Database::escape_string($values['students_can_edit_group']['students_can_edit'])."', - '".Database::escape_string($values['approval_direct_group']['approval_direct'])."', - '".Database::escape_string($values['allow_attachments_group']['allow_attachments'])."', - '".Database::escape_string($values['allow_new_threads_group']['allow_new_threads'])."', - '".Database::escape_string($values['default_view_type_group']['default_view_type'])."', - '".Database::escape_string($values['group_forum'])."', - '".Database::escape_string($values['public_private_group_forum_group']['public_private_group_forum'])."', - '".Database::escape_string($new_max)."', - ".intval($session_id).")"; - api_sql_query($sql, __LINE__,__FILE__); - $last_id=Database::get_last_insert_id(); - api_item_property_update($_course, TOOL_FORUM, $last_id,"ForumCategoryAdded", api_get_user_id()); - $return_message=get_lang('ForumAdded'); - } - + + // find the max forum_order for the given category. The new forum is added at the end => max cat_order + & + $sql="SELECT MAX(forum_order) as sort_max FROM ".$table_forums." WHERE forum_category=".Database::escape_string($values['forum_category']); + $result=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($result); + $new_max=$row['sort_max']+1; + $session_id = isset($_SESSION['id_session']) ? $_SESSION['id_session'] : 0; + + $clean_title=Security::remove_XSS(Database::escape_string(htmlspecialchars($values['forum_title']))); + + $image_moved=false; + if(!empty($_FILES['picture']['name'])) + { + $upload_ok = process_uploaded_file($_FILES['picture']); + $has_attachment=true; + } + else + { + $image_moved=true; + } + + // remove existing picture if asked + if ($values['remove_picture']) + { + delete_forum_image($values['forum_id']); + } + + + if($upload_ok) + { + if ($has_attachment) + { + $courseDir = $_course['path'].'/upload/forum/images'; + $sys_course_path = api_get_path(SYS_COURSE_PATH); + $updir = $sys_course_path.$courseDir; + + // Try to add an extension to the file if it hasn't one + $new_file_name = add_ext_on_mime(stripslashes($_FILES['picture']['name']), $_FILES['picture']['type']); + + // user's file name + $file_name =$_FILES['picture']['name']; + + if (!filter_extension($new_file_name)) + { + //Display :: display_error_message(get_lang('UplUnableToSaveFileFilteredExtension')); + $image_moved=false; + } + else + { + $file_extension = explode('.', $_FILES['picture']['name']); + $file_extension = strtolower($file_extension[sizeof($file_extension) - 1]); + $new_file_name = uniqid('').'.'.$file_extension; + $new_path=$updir.'/'.$new_file_name; + $result= @move_uploaded_file($_FILES['picture']['tmp_name'], $new_path); + // Storing the attachments if any + if ($result) + { + $image_moved=true; + } + } + } + } + + if (isset($values['forum_id'])) + { + $sql_image=''; + if ($image_moved) + { + $sql_image=" forum_image='".Database::escape_string($new_file_name)."', "; + delete_forum_image($values['forum_id']); + } + + // storing an edit + $sql="UPDATE ".$table_forums." SET + forum_title='".$clean_title."', + ".$sql_image." + forum_comment='".Database::escape_string($values['forum_comment'])."', + forum_category='".Database::escape_string($values['forum_category'])."', + allow_anonymous='".Database::escape_string($values['allow_anonymous_group']['allow_anonymous'])."', + allow_edit='".Database::escape_string($values['students_can_edit_group']['students_can_edit'])."', + approval_direct_post='".Database::escape_string($values['approval_direct_group']['approval_direct'])."', + allow_attachments='".Database::escape_string($values['allow_attachments_group']['allow_attachments'])."', + allow_new_threads='".Database::escape_string($values['allow_new_threads_group']['allow_new_threads'])."', + forum_group_public_private='".Database::escape_string($values['public_private_group_forum_group']['public_private_group_forum'])."', + default_view='".Database::escape_string($values['default_view_type_group']['default_view_type'])."', + forum_of_group='".Database::escape_string($values['group_forum'])."' + WHERE forum_id='".Database::escape_string($values['forum_id'])."'"; + api_sql_query($sql,__FILE__,__LINE__); + $return_message=get_lang('ForumEdited'); + } + else + { + $sql_image=''; + if ($image_moved) + { + $sql_image="'".$new_file_name."', "; + } + + $sql="INSERT INTO ".$table_forums." + (forum_title, forum_image, forum_comment, forum_category, allow_anonymous, allow_edit, approval_direct_post, allow_attachments, allow_new_threads, default_view, forum_of_group, forum_group_public_private, forum_order, session_id) + VALUES ('".$clean_title."', + ".$sql_image." + '".Database::escape_string($values['forum_comment'])."', + '".Database::escape_string($values['forum_category'])."', + '".Database::escape_string($values['allow_anonymous_group']['allow_anonymous'])."', + '".Database::escape_string($values['students_can_edit_group']['students_can_edit'])."', + '".Database::escape_string($values['approval_direct_group']['approval_direct'])."', + '".Database::escape_string($values['allow_attachments_group']['allow_attachments'])."', + '".Database::escape_string($values['allow_new_threads_group']['allow_new_threads'])."', + '".Database::escape_string($values['default_view_type_group']['default_view_type'])."', + '".Database::escape_string($values['group_forum'])."', + '".Database::escape_string($values['public_private_group_forum_group']['public_private_group_forum'])."', + '".Database::escape_string($new_max)."', + ".intval($session_id).")"; + api_sql_query($sql, __LINE__,__FILE__); + $last_id=Database::get_last_insert_id(); + api_item_property_update($_course, TOOL_FORUM, $last_id,"ForumCategoryAdded", api_get_user_id()); + $return_message=get_lang('ForumAdded'); + } + return $return_message; -} - -/** -* This function deletes a forum or a forum category -* This function currently does not delete the forums inside the category, nor the threads and replies inside these forums. -* For the moment this is the easiest method and it has the advantage that it allows to recover fora that were acidently deleted -* when the forum category got deleted. -* -* @param $content = what we are deleting (a forum or a forum category) -* @param $id The id of the forum category that has to be deleted. -* -* @todo write the code for the cascading deletion of the forums inside a forum category and also the threads and replies inside these forums -* @todo config setting for recovery or not (see also the documents tool: real delete or not). -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function delete_forum_forumcategory_thread($content, $id) -{ - global $_course; - - if ($content=='forumcategory') - { - $tool_constant=TOOL_FORUM_CATEGORY; - $return_message=get_lang('ForumCategoryDeleted'); - } - if ($content=='forum') - { - $tool_constant=TOOL_FORUM; - $return_message=get_lang('ForumDeleted'); - } - if ($content=='thread') - { - $tool_constant=TOOL_FORUM_THREAD; - $return_message=get_lang('ThreadDeleted'); - } - $my_user_id = api_get_user_id(); - api_item_property_update($_course,$tool_constant,$id,'delete',$my_user_id); // note: check if this returns a true and if so => return $return_message, if not => return false; - //delete_attachment($post_id); - return $return_message; -} - -/** -* This function deletes a forum post. This separate function is needed because forum posts do not appear in the item_property table (yet) -* and because deleting a post also has consequence on the posts that have this post as parent_id (they are also deleted). -* an alternative would be to store the posts also in item_property and mark this post as deleted (visibility = 2). -* We also have to decrease the number of replies in the thread table -* -* @param $post_id the id of the post that will be deleted -* -* @todo write recursive function that deletes all the posts that have this message as parent -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function delete_post($post_id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - - $sql="DELETE FROM $table_posts WHERE post_id='".Database::escape_string($post_id)."'"; // note: this has to be a recursive function that deletes all of the posts in this block. - api_sql_query($sql,__FILE__,__LINE__); - - delete_attachment($post_id); - - $last_post_of_thread=check_if_last_post_of_thread(strval(intval($_GET['thread']))); - - if (is_array($last_post_of_thread)) - { - // Decreasing the number of replies for this thread and also changing the last post information - $sql="UPDATE $table_threads SET thread_replies=thread_replies-1, - thread_last_post='".Database::escape_string($last_post_of_thread['post_id'])."', - thread_date='".Database::escape_string($last_post_of_thread['post_date'])."' - WHERE thread_id='".Database::escape_string($_GET['thread'])."'"; - api_sql_query($sql,__FILE__,__LINE__); - return 'PostDeleted'; - } - if ($last_post_of_thread==false) - { - // we deleted the very single post of the thread so we need to delete the entry in the thread table also. - $sql="DELETE FROM $table_threads WHERE thread_id='".Database::escape_string($_GET['thread'])."'"; - api_sql_query($sql,__FILE__,__LINE__); - return 'PostDeletedSpecial'; - } -} - - -/** -* This function gets the all information of the last (=most recent) post of the thread -* This can be done by sorting the posts that have the field thread_id=$thread_id and sort them by post_date -* -* @param $thread_id the id of the thread we want to know the last post of. -* @return an array if there is a last post found, false if there is no post entry linked to that thread => thread will be deleted -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function check_if_last_post_of_thread($thread_id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - - $sql="SELECT * FROM $table_posts WHERE thread_id='".Database::escape_string($thread_id)."' ORDER BY post_date DESC"; - $result=api_sql_query($sql,__FILE__,__LINE__); - if (Database::num_rows($result)>0) - { - $row=Database::fetch_array($result); - return $row; - } - else - { - return false; - } -} - - -/** -* This function takes care of the display of the visibility icon -* -* @param $content what is it that we want to make (in)visible: forum category, forum, thread, post -* @param $id the id of the content we want to make invisible -* @param $current_visibility_status what is the current status of the visibility (0 = invisible, 1 = visible) -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function display_visible_invisible_icon($content, $id, $current_visibility_status, $additional_url_parameters='') -{ - $id = Security::remove_XSS($id); - if ($current_visibility_status=='1') - { - echo ''.icon('../img/visible.gif',get_lang('MakeInvisible')).''; - } - if ($current_visibility_status=='0') - { - echo ''.icon('../img/invisible.gif',get_lang('MakeVisible')).''; - } -} - -/** -* This function takes care of the display of the lock icon -* -* @param $content what is it that we want to (un)lock: forum category, forum, thread, post -* @param $id the id of the content we want to (un)lock -* @param $current_visibility_status what is the current status of the visibility (0 = invisible, 1 = visible) -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function display_lock_unlock_icon($content, $id, $current_lock_status, $additional_url_parameters='') -{ - $id = Security::remove_XSS($id); - if ($current_lock_status=='1') - { - echo ''.icon('../img/lock.gif',get_lang('Unlock')).''; - } - if ($current_lock_status=='0') - { - echo ''.icon('../img/unlock.gif',get_lang('Lock')).''; - } -} - -/** -* This function takes care of the display of the up and down icon -* -* @param $content what is it that we want to make (in)visible: forum category, forum, thread, post -* @param $id is the id of the item we want to display the icons for -* @param $list is an array of all the items. All items in this list should have an up and down icon except for the first (no up icon) and the last (no down icon) -* The key of this $list array is the id of the item. -* -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function display_up_down_icon($content, $id, $list) -{ - $id = strval(intval($id)); - $total_items=count($list); - $position = 0; - $internal_counter=0; - - if(is_array($list)) - { - foreach ($list as $key=>$listitem) - { - $internal_counter++; - if ($id==$key) - { - $position=$internal_counter; - } - } - } - if ($position>1) - { - $return_value=''; - } - else - { - $return_value=''; - } - - if ($position<$total_items) - { - $return_value.=''; - } - else - { - - $return_value.=''; - } - - echo $return_value; -} - - - - -/** -* This function changes the visibility in the database (item_property) -* -* @param $content what is it that we want to make (in)visible: forum category, forum, thread, post -* @param $id the id of the content we want to make invisible -* @param $target_visibility what is the current status of the visibility (0 = invisible, 1 = visible) -* -* @todo change the get parameter so that it matches the tool constants. -* @todo check if api_item_property_update returns true or false => returnmessage depends on it. -* @todo move to itemmanager -* -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function change_visibility($content, $id, $target_visibility) -{ - global $_course; - $my_user_id = api_get_user_id(); - $constants=array('forumcategory'=>TOOL_FORUM_CATEGORY, 'forum'=>TOOL_FORUM, 'thread'=>TOOL_FORUM_THREAD); - api_item_property_update($_course,$constants[$content],$id,$target_visibility,$my_user_id); // note: check if this returns true or false => returnmessage depends on it. - if ($target_visibility=='visible') - { - handle_mail_cue($content, $id); - } - - return get_lang('VisibilityChanged'); -} - - -/** -* This function changes the lock status in the database -* -* @param $content what is it that we want to (un)lock: forum category, forum, thread, post -* @param $id the id of the content we want to (un)lock -* @param $action do we lock (=>locked value in db = 1) or unlock (=> locked value in db = 0) -* @return string, language variable -* -* @todo move to itemmanager -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function change_lock_status($content, $id, $action) -{ - $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - - // Determine the relevant table - if ($content=='forumcategory') - { - $table=$table_categories; - $id_field='cat_id'; - } - elseif ($content=='forum') - { - $table=$table_forums; - $id_field='forum_id'; - } - elseif ($content=='thread') - { - $table=$table_threads; - $id_field='thread_id'; - } - else - { - return get_lang('Error'); - } - - // Determine what we are doing => defines the value for the database and the return message - if ($action=='lock') - { - $db_locked=1; - $return_message=get_lang('Locked'); - } - elseif ($action=='unlock') - { - $db_locked=0; - $return_message=get_lang('Unlocked'); - } - else - { - return get_lang('Error'); - } - - // Doing the change in the database - $sql="UPDATE $table SET locked='".Database::escape_string($db_locked)."' WHERE $id_field='".Database::escape_string($id)."'"; - if (api_sql_query($sql,__FILE__,__LINE__)) - { - return $return_message; - } - else - { - return get_lang('Error'); - } -} - - -/** -* This function moves a forum or a forum category up or down -* -* @param $content what is it that we want to make (in)visible: forum category, forum, thread, post -* @param $direction do we want to move it up or down. -* @param $id the id of the content we want to make invisible -* @todo consider removing the table_item_property calls here but this can prevent unwanted side effects when a forum does not have an entry in -* the item_property table but does have one in the forum table. -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function move_up_down($content, $direction, $id) -{ - $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - - - // Determine which field holds the sort order - if ($content=='forumcategory') - { - $table=$table_categories; - $sort_column='cat_order'; - $id_column='cat_id'; - $sort_column='cat_order'; - } - elseif ($content=='forum') - { - $table=$table_forums; - $sort_column='forum_order'; - $id_column='forum_id'; - $sort_column='forum_order'; - // we also need the forum_category of this forum - $sql="SELECT forum_category FROM $table_forums WHERE forum_id=".Database::escape_string($id); - $result=api_sql_query($sql,__FILE__,__LINE__); - $row=Database::fetch_array($result); - $forum_category=$row['forum_category']; - } - else - { - return get_lang('Error'); - } - - // determine if need to sort ascending or descending - if ($direction=='down') - { - $sort_direction='ASC'; - } - elseif ($direction=='up') - { - $sort_direction='DESC'; - } - else - { - return get_lang('Error'); - } - - // The SQL statement - if ($content=='forumcategory') - { - $sql="SELECT * FROM".$table_categories." forum_categories, ".$table_item_property." item_properties - WHERE forum_categories.cat_id=item_properties.ref - AND item_properties.tool='".TOOL_FORUM_CATEGORY."' - ORDER BY forum_categories.cat_order $sort_direction"; - } - if ($content=='forum') - { - $sql="SELECT * FROM".$table." WHERE forum_category='".Database::escape_string($forum_category)."' ORDER BY forum_order $sort_direction"; - } - - - // echo $sql.'
'; - - - // finding the items that need to be switched - $result=api_sql_query($sql,__FILE__,__LINE__); - $found=false; - while ($row=Database::fetch_array($result)) - { - //echo $row[$id_column].'-'; - if ($found==true) - { - $next_id=$row[$id_column]; - $next_sort=$row[$sort_column]; - $found=false; - } - if($id==$row[$id_column]) - { - $this_id=$id; - $this_sort=$row[$sort_column]; - $found=true; - } - } - - // Committing the switch - // we do an extra check if we do not have illegal values. If your remove this if statment you will - // be able to mess with the sorting by refreshing the page over and over again. - if ($this_sort<>'' AND $next_sort<>'' AND $next_id<>'' AND $this_id<>'') - { - $sql_update1="UPDATE $table SET $sort_column='".Database::escape_string($this_sort)."' WHERE $id_column='".Database::escape_string($next_id)."'"; - $sql_update2="UPDATE $table SET $sort_column='".Database::escape_string($next_sort)."' WHERE $id_column='".Database::escape_string($this_id)."'"; - api_sql_query($sql_update1,__FILE__,__LINE__); - api_sql_query($sql_update2,__FILE__,__LINE__); - } - - return get_lang(ucfirst($content).'Moved'); -} - - -/** -* This function returns a piece of html code that make the links grey (=invisible for the student) -* -* @param boolean 0/1: 0 = invisible, 1 = visible -* @return string -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function class_visible_invisible($current_visibility_status) -{ - if ($current_visibility_status=='0') - { - return "class='invisible'"; - } -} - -/** -* Retrieve all the information off the forum categories (or one specific) for the current course. -* The categories are sorted according to their sorting order (cat_order -* -* @param $id default ''. When an id is passed we only find the information about that specific forum category. If no id is passed we get all the forum categories. -* @return an array containing all the information about all the forum categories -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_forum_categories($id='') -{ - $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - - $session_condition = isset($_SESSION['id_session']) ? 'AND forum_categories.session_id IN (0,'.intval($_SESSION['id_session']).')' : ''; - - if ($id=='') - { - $sql="SELECT * FROM".$table_categories." forum_categories, ".$table_item_property." item_properties - WHERE forum_categories.cat_id=item_properties.ref - AND item_properties.visibility=1 - AND item_properties.tool='".TOOL_FORUM_CATEGORY."' - $session_condition - ORDER BY forum_categories.cat_order ASC"; - if (is_allowed_to_edit(false,true)) - { - $sql="SELECT * FROM".$table_categories." forum_categories, ".$table_item_property." item_properties - WHERE forum_categories.cat_id=item_properties.ref - AND item_properties.visibility<>2 - AND item_properties.tool='".TOOL_FORUM_CATEGORY."' - $session_condition - ORDER BY forum_categories.cat_order ASC"; - } - } - else - { - $sql="SELECT * FROM".$table_categories." forum_categories, ".$table_item_property." item_properties - WHERE forum_categories.cat_id=item_properties.ref - AND item_properties.tool='".TOOL_FORUM_CATEGORY."' - AND forum_categories.cat_id='".Database::escape_string($id)."' - $session_condition - ORDER BY forum_categories.cat_order ASC"; - } - $result=api_sql_query($sql,__FILE__,__LINE__); - while ($row=Database::fetch_array($result)) - { - if($row['session_id']>0) - { - $sql_session = 'SELECT name FROM '.Database::get_main_table(TABLE_MAIN_SESSION).' WHERE id='.$row['session_id']; - $rs_session = api_sql_query($sql_session,__FILE__,__LINE__); - $row['session_name'] = mysql_result($rs_session,0,0); - } - if ($id=='') - { - $forum_categories_list[$row['cat_id']]=$row; - } - else - { - $forum_categories_list=$row; - } - } - return $forum_categories_list; -} - -/** -* This function retrieves all the fora in a given forum category -* -* @param integer $cat_id the id of the forum category -* @return an array containing all the information about the forums (regardless of their category) -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_forums_in_category($cat_id) -{ - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - - $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties - WHERE forum.forum_category='".Database::escape_string($cat_id)."' - AND forum.forum_id=item_properties.ref - AND item_properties.visibility=1 - AND item_properties.tool='".TOOL_FORUM."' - ORDER BY forum.forum_order ASC"; - if (is_allowed_to_edit(false,true)) - { - $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties - WHERE forum.forum_category='".Database::escape_string($cat_id)."' - AND forum.forum_id=item_properties.ref - AND item_properties.visibility<>2 - AND item_properties.tool='".TOOL_FORUM."' - ORDER BY forum_order ASC"; - } - $result=api_sql_query($sql,__FILE__,__LINE__); - while ($row=Database::fetch_array($result)) - { - $forum_list[$row['forum_id']]=$row; - } - return $forum_list; -} -/** -* Retrieve all the forums (regardless of their category) or of only one. The forums are sorted according to the forum_order. -* Since it does not take the forum category into account there probably will be two or more forums that have forum_order=1, ... -* -* @return an array containing all the information about the forums (regardless of their category) -* @todo check $sql4 because this one really looks fishy. -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_forums($id='') -{ - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - - // **************** GETTING ALL THE FORUMS ************************* // - - $session_condition = isset($_SESSION['id_session']) ? 'AND forum.session_id IN (0,'.intval($_SESSION['id_session']).')' : ''; - $forum_list = array(); - if ($id=='') - { - //-------------- Student -----------------// - // select all the forum information of all forums (that are visible to students) - $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties - WHERE forum.forum_id=item_properties.ref - AND item_properties.visibility=1 - AND item_properties.tool='".TOOL_FORUM."' - $session_condition - ORDER BY forum.forum_order ASC"; - // select the number of threads of the forums (only the threads that are visible) - $sql2="SELECT count(*) AS number_of_threads, threads.forum_id FROM $table_threads threads, ".$table_item_property." item_properties - WHERE threads.thread_id=item_properties.ref - AND item_properties.visibility=1 - AND item_properties.tool='".TOOL_FORUM_THREAD."' - GROUP BY threads.forum_id"; - // select the number of posts of the forum (post that are visible and that are in a thread that is visible) - $sql3="SELECT count(*) AS number_of_posts, posts.forum_id FROM $table_posts posts, $table_threads threads, ".$table_item_property." item_properties - WHERE posts.visible=1 - AND posts.thread_id=threads.thread_id - AND threads.thread_id=item_properties.ref - AND item_properties.visibility=1 - AND item_properties.tool='".TOOL_FORUM_THREAD."' - GROUP BY threads.forum_id"; - - //-------------- Course Admin -----------------// - if (is_allowed_to_edit(false,true)) - { - // select all the forum information of all forums (that are not deleted) - $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties - WHERE forum.forum_id=item_properties.ref - AND item_properties.visibility<>2 - AND item_properties.tool='".TOOL_FORUM."' - $session_condition - ORDER BY forum_order ASC"; - //echo $sql.'
'; - // select the number of threads of the forums (only the threads that are not deleted) - $sql2="SELECT count(*) AS number_of_threads, threads.forum_id FROM $table_threads threads, ".$table_item_property." item_properties - WHERE threads.thread_id=item_properties.ref - AND item_properties.visibility<>2 - AND item_properties.tool='".TOOL_FORUM_THREAD."' - GROUP BY threads.forum_id"; - //echo $sql2.'
'; - // select the number of posts of the forum - $sql3="SELECT count(*) AS number_of_posts, forum_id FROM $table_posts GROUP BY forum_id"; - //echo $sql3.'
'; - } - - - } - // **************** GETTING ONE SPECIFIC FORUM ************************* // - // We could do the splitup into student and course admin also but we want to have as much as information about a certain forum as possible - // so we do not take too much information into account. This function (or this section of the function) is namely used to fill the forms - // when editing a forum (and for the moment it is the only place where we use this part of the function) - else - { - // select all the forum information of the given forum (that is not deleted) - $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties - WHERE forum.forum_id=item_properties.ref - AND forum_id='".Database::escape_string($id)."' - AND item_properties.visibility<>2 - AND item_properties.tool='".TOOL_FORUM."' - $session_condition - ORDER BY forum_order ASC"; - // select the number of threads of the forum - $sql2="SELECT count(*) AS number_of_threads, forum_id FROM $table_threads WHERE forum_id=".Database::escape_string($id)." GROUP BY forum_id"; - // select the number of posts of the forum - $sql3="SELECT count(*) AS number_of_posts, forum_id FROM $table_posts WHERE forum_id=".Database::escape_string($id)." GROUP BY forum_id"; - // select the last post and the poster (note: this is probably no longer needed) - $sql4="SELECT post.post_id, post.forum_id, post.poster_id, post.poster_name, post.post_date, users.lastname, users.firstname - FROM $table_posts post, $table_users users - WHERE forum_id=".Database::escape_string($id)." - AND post.poster_id=users.user_id - GROUP BY post.forum_id - ORDER BY post.post_id ASC"; - } - // handling all the forum information - $result=api_sql_query($sql,__FILE__,__LINE__); - while ($row=Database::fetch_array($result)) - { - if($row['session_id']>0) - { - $sql_session = 'SELECT name FROM '.Database::get_main_table(TABLE_MAIN_SESSION).' WHERE id='.$row['session_id']; - $rs_session = api_sql_query($sql_session,__FILE__,__LINE__); - $row['session_name'] = mysql_result($rs_session,0,0); - } - if ($id=='') - { - $forum_list[$row['forum_id']]=$row; - } - else - { - $forum_list=$row; - } - } - - // handling the threadcount information - $result2=api_sql_query($sql2,__FILE__,__LINE__); - while ($row2=Database::fetch_array($result2)) - { - if ($id=='') - { - $forum_list[$row2['forum_id']]['number_of_threads']=$row2['number_of_threads']; - } - else - { - $forum_list['number_of_threads']=$row2['number_of_threads'];; - } - } - // handling the postcount information - $result3=api_sql_query($sql3,__FILE__,__LINE__); - while ($row3=Database::fetch_array($result3)) - { - if ($id=='') - { - if (array_key_exists($row3['forum_id'],$forum_list)) // this is needed because sql3 takes also the deleted forums into account - { - $forum_list[$row3['forum_id']]['number_of_posts']=$row3['number_of_posts']; - } - } - else - { - $forum_list['number_of_posts']=$row3['number_of_posts']; - } - } - - // finding the last post information (last_post_id, last_poster_id, last_post_date, last_poster_name, last_poster_lastname, last_poster_firstname) - if ($id=='') - { - if(is_array($forum_list)) - { - foreach ($forum_list as $key=>$value) - { - $last_post_info_of_forum=get_last_post_information($key,is_allowed_to_edit(false,true)); - $forum_list[$key]['last_post_id']=$last_post_info_of_forum['last_post_id']; - $forum_list[$key]['last_poster_id']=$last_post_info_of_forum['last_poster_id']; - $forum_list[$key]['last_post_date']=$last_post_info_of_forum['last_post_date']; - $forum_list[$key]['last_poster_name']=$last_post_info_of_forum['last_poster_name']; - $forum_list[$key]['last_poster_lastname']=$last_post_info_of_forum['last_poster_lastname']; - $forum_list[$key]['last_poster_firstname']=$last_post_info_of_forum['last_poster_firstname']; - } - } - else - { - $forum_list = array(); - } - } - else - { - $last_post_info_of_forum=get_last_post_information($id,is_allowed_to_edit(false,true)); - $forum_list['last_post_id']=$last_post_info_of_forum['last_post_id']; - $forum_list['last_poster_id']=$last_post_info_of_forum['last_poster_id']; - $forum_list['last_post_date']=$last_post_info_of_forum['last_post_date']; - $forum_list['last_poster_name']=$last_post_info_of_forum['last_poster_name']; - $forum_list['last_poster_lastname']=$last_post_info_of_forum['last_poster_lastname']; - $forum_list['last_poster_firstname']=$last_post_info_of_forum['last_poster_firstname']; - } - return $forum_list; -} - -/** -* This functions gets all the last post information of a certain forum -* -* @param $forum_id the id of the forum we want to know the last post information of. -* @param $show_invisibles -* @return array containing all the information about the last post (last_post_id, last_poster_id, last_post_date, last_poster_name, last_poster_lastname, last_poster_firstname) -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_last_post_information($forum_id, $show_invisibles=false) -{ - - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - - $sql="SELECT post.post_id, post.forum_id, post.poster_id, post.poster_name, post.post_date, users.lastname, users.firstname, post.visible, thread_properties.visibility AS thread_visibility, forum_properties.visibility AS forum_visibility - FROM $table_posts post, $table_users users, $table_item_property thread_properties, $table_item_property forum_properties - WHERE post.forum_id=".Database::escape_string($forum_id)." - AND post.poster_id=users.user_id - AND post.thread_id=thread_properties.ref - AND thread_properties.tool='".TOOL_FORUM_THREAD."' - AND post.forum_id=forum_properties.ref - AND forum_properties.tool='".TOOL_FORUM."' - ORDER BY post.post_id DESC"; - $result=api_sql_query($sql,__LINE__,__FILE__); - if ($show_invisibles==true) - { - $row=Database::fetch_array($result); - $return_array['last_post_id']=$row['post_id']; - $return_array['last_poster_id']=$row['poster_id']; - $return_array['last_post_date']=$row['post_date']; - $return_array['last_poster_name']=$row['poster_name']; - $return_array['last_poster_lastname']=$row['lastname']; - $return_array['last_poster_firstname']=$row['firstname']; - return $return_array; - } - else - { - // we have to loop through the results to find the first one that is actually visible to students (forum_category, forum, thread AND post are visible) - while ($row=Database::fetch_array($result)) - { - if ($row['visible']=='1' AND $row['thread_visibility']=='1' AND $row['forum_visibility']=='1') - { - $return_array['last_post_id']=$row['post_id']; - $return_array['last_poster_id']=$row['poster_id']; - $return_array['last_post_date']=$row['post_date']; - $return_array['last_poster_name']=$row['poster_name']; - $return_array['last_poster_lastname']=$row['lastname']; - $return_array['last_poster_firstname']=$row['firstname']; - return $return_array; - } - } - } -} - -/** -* Retrieve all the threads of a given forum -* -* @param -* @return an array containing all the information about the threads -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_threads($forum_id) -{ - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - - // important note: it might seem a little bit awkward that we have 'thread.locked as locked' in the sql statement - // because we also have thread.* in it. This is because thread has a field locked and post also has the same field - // since we are merging these we would have the post.locked value but in fact we want the thread.locked value - // This is why it is added to the end of the field selection - - - $sql = "SELECT thread.*, item_properties.*, post.*, users.firstname, users.lastname, users.user_id, - last_poster_users.firstname as last_poster_firstname , last_poster_users.lastname as last_poster_lastname, last_poster_users.user_id as last_poster_user_id, thread.locked as locked - FROM $table_threads thread - INNER JOIN $table_item_property item_properties - ON thread.thread_id=item_properties.ref - AND item_properties.visibility='1' - AND item_properties.tool='".TOOL_FORUM_THREAD."' - LEFT JOIN $table_users users - ON thread.thread_poster_id=users.user_id - LEFT JOIN $table_posts post - ON thread.thread_last_post = post.post_id - LEFT JOIN $table_users last_poster_users - ON post.poster_id= last_poster_users.user_id - WHERE thread.forum_id='".Database::escape_string($forum_id)."' - ORDER BY thread.thread_sticky DESC, thread.thread_date DESC"; - if (is_allowed_to_edit(false,true)) - { - // important note: it might seem a little bit awkward that we have 'thread.locked as locked' in the sql statement - // because we also have thread.* in it. This is because thread has a field locked and post also has the same field - // since we are merging these we would have the post.locked value but in fact we want the thread.locked value - // This is why it is added to the end of the field selection - $sql = "SELECT thread.*, item_properties.*, post.*, users.firstname, users.lastname, users.user_id, - last_poster_users.firstname as last_poster_firstname , last_poster_users.lastname as last_poster_lastname, last_poster_users.user_id as last_poster_user_id, thread.locked as locked - FROM $table_threads thread - INNER JOIN $table_item_property item_properties - ON thread.thread_id=item_properties.ref - AND item_properties.visibility<>2 - AND item_properties.tool='".TOOL_FORUM_THREAD."' - LEFT JOIN $table_users users - ON thread.thread_poster_id=users.user_id - LEFT JOIN $table_posts post - ON thread.thread_last_post = post.post_id - LEFT JOIN $table_users last_poster_users - ON post.poster_id= last_poster_users.user_id - WHERE thread.forum_id='".Database::escape_string($forum_id)."' - ORDER BY thread.thread_sticky DESC, thread.thread_date DESC"; - } - $result=api_sql_query($sql, __FILE__, __LINE__); - while ($row=Database::fetch_array($result,'ASSOC')) - { - $thread_list[]=$row; - } - return $thread_list; -} - -/** -* Retrieve all posts of a given thread -* -* @return an array containing all the information about the posts of a given thread -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_posts($thread_id) -{ - - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - - // note: change these SQL so that only the relevant fields of the user table are used - if (api_is_allowed_to_edit(false,true)) - { - $sql = "SELECT * FROM $table_posts posts - LEFT JOIN $table_users users - ON posts.poster_id=users.user_id - WHERE posts.thread_id='".Database::escape_string($thread_id)."' - ORDER BY posts.post_id ASC"; - } - else - { - // students can only se the posts that are approved (posts.visible='1') - $sql = "SELECT * FROM $table_posts posts - LEFT JOIN $table_users users - ON posts.poster_id=users.user_id - WHERE posts.thread_id='".Database::escape_string($thread_id)."' - AND posts.visible='1' - ORDER BY posts.post_id ASC"; - } - $result=api_sql_query($sql, __FILE__, __LINE__); - while ($row=Database::fetch_array($result)) - { - $post_list[]=$row; - } - return $post_list; -} - -/** -* This function return the html syntax for the image -* -* @param $image_url The url of the image (absolute or relative) -* @param $alt The alt text (when the images cannot be displayed). http://www.w3.org/TR/html4/struct/objects.html#adef-alt -* @param $title The title of the image. Most browsers display this as 'tool tip'. http://www.w3.org/TR/html4/struct/global.html#adef-title -* -* @todo this is the same as the Display::xxx function, so it can be removed => all calls have to be changed also -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function icon($image_url,$alt='',$title='') -{ - if ($title=='') - { - $title=$alt; - } - return ''.$alt.''; -} - -/************************************************************************** - NEW TOPIC FUNCTIONS -**************************************************************************/ - -/** -* This function retrieves all the information of a post -* -* @param $forum_id integer that indicates the forum -* @return array returns -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_post_information($post_id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - - $sql="SELECT * FROM ".$table_posts."posts, ".$table_users." users WHERE posts.poster_id=users.user_id AND posts.post_id='".Database::escape_string($post_id)."'"; - $result=api_sql_query($sql, __FILE__, __LINE__); - $row=Database::fetch_array($result); - return $row; -} - - -/** -* This function retrieves all the information of a thread -* -* @param $forum_id integer that indicates the forum -* @return array returns -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_thread_information($thread_id) -{ - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - - $sql="SELECT * FROM ".$table_threads." threads, ".$table_item_property." item_properties - WHERE item_properties.tool='".TOOL_FORUM_THREAD."' - AND item_properties.ref='".(int)$thread_id."' - AND threads.thread_id='".(int)$thread_id."'"; - $result=api_sql_query($sql, __FILE__, __LINE__); - $row=Database::fetch_array($result); - return $row; -} - -/** -* This function retrieves forum thread users details -* @param int Thread ID -* @param string Course DB name (optional) -* @return array Array of type ([user_id=>w,lastname=>x,firstname=>y,thread_id=>z],[]) -* @author Christian Fasanando , -* @version October 2008, dokeos 1.8 -*/ - -function get_thread_users_details($thread_id, $db_name = null) -{ - $t_posts = Database :: get_course_table(TABLE_FORUM_POST, (empty($db_name)?null:$db_name)); - $t_users = Database :: get_main_table(TABLE_MAIN_USER); - $sql = "SELECT DISTINCT user_id, lastname, firstname, thread_id - FROM $t_posts , $t_users - WHERE poster_id = user_id - AND thread_id = '".(int)$thread_id."' - AND status not in('1')"; - - $result = api_sql_query($sql, __FILE__, __LINE__); - return $result; -} - -/** -* This function retrieves qualified forum thread users -* @param int Thread ID -* @param string Course DB name (optional) -* @return array Array of type ([user_id=>w,lastname=>x,firstname=>y,thread_id=>z],[]) -* @author Jhon Hinojosa, -* @version October 2008, dokeos 1.8 -*/ - -function get_thread_users_qualify($thread_id, $db_name = null) -{ - $t_posts = Database :: get_course_table(TABLE_FORUM_POST, (empty($db_name)?null:$db_name)); - $t_qualify = Database :: get_course_table(TABLE_FORUM_THREAD_QUALIFY, (empty($db_name)?null:$db_name)); - $t_users = Database :: get_main_table(TABLE_MAIN_USER); - - $sql = "SELECT post.poster_id, user.lastname, user.firstname, post.thread_id,user.user_id,qualify.qualify - FROM $t_posts post, $t_qualify qualify, $t_users user - WHERE post.poster_id = user.user_id - AND post.poster_id = qualify.user_id - AND qualify.thread_id = '".(int)$thread_id."' - AND user.status not in('1') - GROUP BY post.poster_id "; - $result = api_sql_query($sql, __FILE__, __LINE__); - return $result; -} - -/** -* This function retrieves unqualified forum thread users -* @param int Thread ID -* @param string Course DB name (optional) -* @return array Array of type ([user_id=>w,lastname=>x,firstname=>y,thread_id=>z],[]) -* @author Christian Fasanando, -* @version October 2008, dokeos 1.8 -*/ - -function get_thread_users_not_qualify($thread_id, $db_name = null) -{ - $t_posts = Database :: get_course_table(TABLE_FORUM_POST, (empty($db_name)?null:$db_name)); - $t_qualify = Database :: get_course_table(TABLE_FORUM_THREAD_QUALIFY, (empty($db_name)?null:$db_name)); - $t_users = Database :: get_main_table(TABLE_MAIN_USER); - - $sql1 = "select user_id FROM $t_qualify WHERE thread_id = '".(int)$thread_id."'"; - $result1 = api_sql_query($sql1,__FILE__,__LINE__); - $cad=''; - while ($row=Database::fetch_array($result1)) - { - $cad .= $row['user_id'].','; - } - if($cad=='') - { - $cad='0'; - } - else - { - $cad=substr($cad,0,strlen($cad)-1); - } - $sql = "SELECT DISTINCT user.user_id, user.lastname, user.firstname, post.thread_id - FROM $t_posts post, $t_users user - WHERE post.poster_id = user.user_id - AND user.user_id NOT IN (".$cad.") - AND post.thread_id = '".(int)$thread_id."' - AND user.status not in('1')"; - - $result = api_sql_query($sql, __FILE__, __LINE__); - return $result; -} - - -/** -* This function retrieves all the information of a given forum_id -* -* @param $forum_id integer that indicates the forum -* @return array returns -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -* -* @deprecated this functionality is now moved to get_forums($forum_id) -*/ -function get_forum_information($forum_id) -{ - - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - $table_forums = Database :: get_course_table(TABLE_FORUM); - - $sql="SELECT * FROM ".$table_forums." forums, ".$table_item_property." item_properties - WHERE item_properties.tool='".TOOL_FORUM."' - AND item_properties.ref='".(int)$forum_id."' - AND forums.forum_id='".(int)$forum_id."'"; - $result=api_sql_query($sql, __FILE__, __LINE__); - $row=Database::fetch_array($result); - $row['approval_direct_post'] = 0; // we can't anymore change this option, so it should always be activated - return $row; -} - -/** -* This function retrieves all the information of a given forumcategory id -* -* @param $forum_id integer that indicates the forum -* @return array returns -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_forumcategory_information($cat_id) -{ - $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - - $sql="SELECT * FROM ".$table_categories." forumcategories, ".$table_item_property." item_properties - WHERE item_properties.tool='".TOOL_FORUM_CATEGORY."' - AND item_properties.ref='".Database::escape_string($cat_id)."' - AND forumcategories.cat_id='".Database::escape_string($cat_id)."'"; - $result=api_sql_query($sql, __FILE__, __LINE__); - $row=Database::fetch_array($result); - return $row; -} - -/** -* This function counts the number of forums inside a given category -* -* @param $cat_id the id of the forum category -* @todo an additional parameter that takes the visibility into account. For instance $countinvisible=0 would return the number -* of visible forums, $countinvisible=1 would return the number of visible and invisible forums -* @return int the number of forums inside the given category -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function count_number_of_forums_in_category($cat_id) -{ - $table_forums = Database :: get_course_table(TABLE_FORUM); - - $sql="SELECT count(*) AS number_of_forums FROM ".$table_forums." WHERE forum_category='".Database::escape_string($cat_id)."'"; - $result=api_sql_query($sql, __FILE__, __LINE__); - $row=Database::fetch_array($result); - return $row['number_of_forums']; -} - -/** -* This function stores a new thread. This is done through an entry in the forum_thread table AND -* in the forum_post table because. The threads are also stored in the item_property table. (forum posts are not (yet)) -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function store_thread($values) -{ - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - global $_user; - global $_course; - global $current_forum; - global $origin; - global $forum_table_attachment; - - $upload_ok=1; - $has_attachment=false; - - if(!empty($_FILES['user_upload']['name'])) - { - $upload_ok = process_uploaded_file($_FILES['user_upload']); - $has_attachment=true; - } - - - if($upload_ok) - { - - $post_date=date('Y-m-d H:i:s'); - - if ($current_forum['approval_direct_post']=='1' AND !api_is_allowed_to_edit()) - { - $visible=0; // the post is not approved yet. - } - else - { - $visible=1; - } - - $clean_post_title=Security::remove_XSS(Database::escape_string(htmlspecialchars($values['post_title']))); - - // We first store an entry in the forum_thread table because the thread_id is used in the forum_post table - $sql="INSERT INTO $table_threads (thread_title, forum_id, thread_poster_id, thread_poster_name, thread_date, thread_sticky,thread_title_qualify,thread_qualify_max) - VALUES ('".$clean_post_title."', - '".Database::escape_string($values['forum_id'])."', - '".Database::escape_string($_user['user_id'])."', - '".Database::escape_string($values['poster_name'])."', - '".Database::escape_string($post_date)."', - '".Database::escape_string($values['thread_sticky'])."'," . - "'".Database::escape_string($values['calification_notebook_title'])."'," . - "'".Database::escape_string($values['numeric_calification'])."')"; - $result=api_sql_query($sql, __LINE__, __FILE__); - $last_thread_id=Database::insert_id(); - - //add option gradebook qualify - - if($values['thread_qualify_gradebook']=='1'){ - //add function gradebook - $coursecode=api_get_course_id(); - $resourcetype=5; - $resourceid=$last_thread_id; - $resourcename=$values['calification_notebook_title']; - $maxqualify=$values['numeric_calification']; - $resourcedescription=''; - $sessionid=api_get_session_id(); - - //is_resource_in_course_gradebook($course_code, $resource_type, $resource_id); - add_resource_to_course_gradebook($coursecode,$resourcetype,$resourceid,$resourcename,0,$maxqualify,$resourcedescription,null,0,$sessionid); - - } - $my_user_id = api_get_user_id(); - api_item_property_update($_course, TOOL_FORUM_THREAD, $last_thread_id,"ForumThreadAdded", $my_user_id); - // if the forum properties tell that the posts have to be approved we have to put the whole thread invisible - // because otherwise the students will see the thread and not the post in the thread. - // we also have to change $visible because the post itself has to be visible in this case (otherwise the teacher would have - // to make the thread visible AND the post - - if ($visible==0) - { - api_item_property_update($_course, TOOL_FORUM_THREAD, $last_thread_id,"invisible", $my_user_id); - $visible=1; - } - - - // We now store the content in the table_post table - $sql="INSERT INTO $table_posts (post_title, post_text, thread_id, forum_id, poster_id, poster_name, post_date, post_notification, post_parent_id, visible) - VALUES ('".$clean_post_title."', - '".Database::escape_string($values['post_text'])."', - '".Database::escape_string($last_thread_id)."', - '".Database::escape_string($values['forum_id'])."', - '".Database::escape_string($_user['user_id'])."', - '".Database::escape_string($values['poster_name'])."', - '".Database::escape_string($post_date)."', - '".Database::escape_string($values['post_notification'])."','0', - '".Database::escape_string($visible)."')"; - api_sql_query($sql, __LINE__, __FILE__); - $last_post_id=Database::insert_id(); - - // now have to update the thread table to fill the thread_last_post field (so that we know when the thread has been updated for the last time) - $sql="UPDATE $table_threads SET thread_last_post='".Database::escape_string($last_post_id)."' WHERE thread_id='".Database::escape_string($last_thread_id)."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - - $message=get_lang('NewThreadStored'); - - - // Storing the attachments if any - if ($has_attachment) - { - $courseDir = $_course['path'].'/upload/forum'; - $sys_course_path = api_get_path(SYS_COURSE_PATH); - $updir = $sys_course_path.$courseDir; - - // Try to add an extension to the file if it hasn't one - $new_file_name = add_ext_on_mime(stripslashes($_FILES['user_upload']['name']), $_FILES['user_upload']['type']); - - // user's file name - $file_name =$_FILES['user_upload']['name']; - - if (!filter_extension($new_file_name)) - { - Display :: display_error_message(get_lang('UplUnableToSaveFileFilteredExtension')); - } - else - { - $new_file_name = uniqid(''); - $new_path=$updir.'/'.$new_file_name; - $result= @move_uploaded_file($_FILES['user_upload']['tmp_name'], $new_path); - $comment=$values['file_comment']; - - // Storing the attachments if any - if ($result) - { - $sql='INSERT INTO '.$forum_table_attachment.'(filename,comment, path, post_id,size) '. - "VALUES ( '".Database::escape_string($file_name)."', '".Database::escape_string($comment)."', '".Database::escape_string($new_file_name)."' , '".$last_post_id."', '".$_FILES['user_upload']['size']."' )"; - $result=api_sql_query($sql, __LINE__, __FILE__); - $message.=' / '.get_lang('FileUploadSucces').'
'; - - $last_id=Database::insert_id(); - api_item_property_update($_course, TOOL_FORUM_ATTACH, $last_id ,'ForumAttachmentAdded', api_get_user_id()); - - } - } - } - else - { - $message.='
'; - } - - if ($current_forum['approval_direct_post']=='1' AND !api_is_allowed_to_edit()) - { - $message.=get_lang('MessageHasToBeApproved').'
'; - $message.=get_lang('ReturnTo').' '.get_lang('Forum').'
'; - } - else - { - $message.=get_lang('ReturnTo').' '.get_lang('Forum').'
'; - $message.=get_lang('ReturnTo').' '.get_lang('Message').''; - } - $reply_info['new_post_id'] = $last_post_id; +} + +/** +* This function deletes a forum or a forum category +* This function currently does not delete the forums inside the category, nor the threads and replies inside these forums. +* For the moment this is the easiest method and it has the advantage that it allows to recover fora that were acidently deleted +* when the forum category got deleted. +* +* @param $content = what we are deleting (a forum or a forum category) +* @param $id The id of the forum category that has to be deleted. +* +* @todo write the code for the cascading deletion of the forums inside a forum category and also the threads and replies inside these forums +* @todo config setting for recovery or not (see also the documents tool: real delete or not). +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function delete_forum_forumcategory_thread($content, $id) +{ + global $_course; + + if ($content=='forumcategory') + { + $tool_constant=TOOL_FORUM_CATEGORY; + $return_message=get_lang('ForumCategoryDeleted'); + } + if ($content=='forum') + { + $tool_constant=TOOL_FORUM; + $return_message=get_lang('ForumDeleted'); + } + if ($content=='thread') + { + $tool_constant=TOOL_FORUM_THREAD; + $return_message=get_lang('ThreadDeleted'); + } + $my_user_id = api_get_user_id(); + api_item_property_update($_course,$tool_constant,$id,'delete',$my_user_id); // note: check if this returns a true and if so => return $return_message, if not => return false; + //delete_attachment($post_id); + return $return_message; +} + +/** +* This function deletes a forum post. This separate function is needed because forum posts do not appear in the item_property table (yet) +* and because deleting a post also has consequence on the posts that have this post as parent_id (they are also deleted). +* an alternative would be to store the posts also in item_property and mark this post as deleted (visibility = 2). +* We also have to decrease the number of replies in the thread table +* +* @param $post_id the id of the post that will be deleted +* +* @todo write recursive function that deletes all the posts that have this message as parent +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function delete_post($post_id) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + + $sql="DELETE FROM $table_posts WHERE post_id='".Database::escape_string($post_id)."'"; // note: this has to be a recursive function that deletes all of the posts in this block. + api_sql_query($sql,__FILE__,__LINE__); + + delete_attachment($post_id); + + $last_post_of_thread=check_if_last_post_of_thread(strval(intval($_GET['thread']))); + + if (is_array($last_post_of_thread)) + { + // Decreasing the number of replies for this thread and also changing the last post information + $sql="UPDATE $table_threads SET thread_replies=thread_replies-1, + thread_last_post='".Database::escape_string($last_post_of_thread['post_id'])."', + thread_date='".Database::escape_string($last_post_of_thread['post_date'])."' + WHERE thread_id='".Database::escape_string($_GET['thread'])."'"; + api_sql_query($sql,__FILE__,__LINE__); + return 'PostDeleted'; + } + if ($last_post_of_thread==false) + { + // we deleted the very single post of the thread so we need to delete the entry in the thread table also. + $sql="DELETE FROM $table_threads WHERE thread_id='".Database::escape_string($_GET['thread'])."'"; + api_sql_query($sql,__FILE__,__LINE__); + return 'PostDeletedSpecial'; + } +} + + +/** +* This function gets the all information of the last (=most recent) post of the thread +* This can be done by sorting the posts that have the field thread_id=$thread_id and sort them by post_date +* +* @param $thread_id the id of the thread we want to know the last post of. +* @return an array if there is a last post found, false if there is no post entry linked to that thread => thread will be deleted +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function check_if_last_post_of_thread($thread_id) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + + $sql="SELECT * FROM $table_posts WHERE thread_id='".Database::escape_string($thread_id)."' ORDER BY post_date DESC"; + $result=api_sql_query($sql,__FILE__,__LINE__); + if (Database::num_rows($result)>0) + { + $row=Database::fetch_array($result); + return $row; + } + else + { + return false; + } +} + + +/** +* This function takes care of the display of the visibility icon +* +* @param $content what is it that we want to make (in)visible: forum category, forum, thread, post +* @param $id the id of the content we want to make invisible +* @param $current_visibility_status what is the current status of the visibility (0 = invisible, 1 = visible) +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function display_visible_invisible_icon($content, $id, $current_visibility_status, $additional_url_parameters='') +{ + $id = Security::remove_XSS($id); + if ($current_visibility_status=='1') + { + echo ''.icon('../img/visible.gif',get_lang('MakeInvisible')).''; + } + if ($current_visibility_status=='0') + { + echo ''.icon('../img/invisible.gif',get_lang('MakeVisible')).''; + } +} + +/** +* This function takes care of the display of the lock icon +* +* @param $content what is it that we want to (un)lock: forum category, forum, thread, post +* @param $id the id of the content we want to (un)lock +* @param $current_visibility_status what is the current status of the visibility (0 = invisible, 1 = visible) +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function display_lock_unlock_icon($content, $id, $current_lock_status, $additional_url_parameters='') +{ + $id = Security::remove_XSS($id); + if ($current_lock_status=='1') + { + echo ''.icon('../img/lock.gif',get_lang('Unlock')).''; + } + if ($current_lock_status=='0') + { + echo ''.icon('../img/unlock.gif',get_lang('Lock')).''; + } +} + +/** +* This function takes care of the display of the up and down icon +* +* @param $content what is it that we want to make (in)visible: forum category, forum, thread, post +* @param $id is the id of the item we want to display the icons for +* @param $list is an array of all the items. All items in this list should have an up and down icon except for the first (no up icon) and the last (no down icon) +* The key of this $list array is the id of the item. +* +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function display_up_down_icon($content, $id, $list) +{ + $id = strval(intval($id)); + $total_items=count($list); + $position = 0; + $internal_counter=0; + + if(is_array($list)) + { + foreach ($list as $key=>$listitem) + { + $internal_counter++; + if ($id==$key) + { + $position=$internal_counter; + } + } + } + if ($position>1) + { + $return_value=''; + } + else + { + $return_value=''; + } + + if ($position<$total_items) + { + $return_value.=''; + } + else + { + + $return_value.=''; + } + + echo $return_value; +} + + + + +/** +* This function changes the visibility in the database (item_property) +* +* @param $content what is it that we want to make (in)visible: forum category, forum, thread, post +* @param $id the id of the content we want to make invisible +* @param $target_visibility what is the current status of the visibility (0 = invisible, 1 = visible) +* +* @todo change the get parameter so that it matches the tool constants. +* @todo check if api_item_property_update returns true or false => returnmessage depends on it. +* @todo move to itemmanager +* +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function change_visibility($content, $id, $target_visibility) +{ + global $_course; + $constants=array('forumcategory'=>TOOL_FORUM_CATEGORY, 'forum'=>TOOL_FORUM, 'thread'=>TOOL_FORUM_THREAD); + api_item_property_update($_course,$constants[$content],$id,$target_visibility,api_get_user_id()); // note: check if this returns true or false => returnmessage depends on it. + if ($target_visibility=='visible') + { + handle_mail_cue($content, $id); + } + + return get_lang('VisibilityChanged'); +} + + +/** +* This function changes the lock status in the database +* +* @param $content what is it that we want to (un)lock: forum category, forum, thread, post +* @param $id the id of the content we want to (un)lock +* @param $action do we lock (=>locked value in db = 1) or unlock (=> locked value in db = 0) +* @return string, language variable +* +* @todo move to itemmanager +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function change_lock_status($content, $id, $action) +{ + $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + + // Determine the relevant table + if ($content=='forumcategory') + { + $table=$table_categories; + $id_field='cat_id'; + } + elseif ($content=='forum') + { + $table=$table_forums; + $id_field='forum_id'; + } + elseif ($content=='thread') + { + $table=$table_threads; + $id_field='thread_id'; + } + else + { + return get_lang('Error'); + } + + // Determine what we are doing => defines the value for the database and the return message + if ($action=='lock') + { + $db_locked=1; + $return_message=get_lang('Locked'); + } + elseif ($action=='unlock') + { + $db_locked=0; + $return_message=get_lang('Unlocked'); + } + else + { + return get_lang('Error'); + } + + // Doing the change in the database + $sql="UPDATE $table SET locked='".Database::escape_string($db_locked)."' WHERE $id_field='".Database::escape_string($id)."'"; + if (api_sql_query($sql,__FILE__,__LINE__)) + { + return $return_message; + } + else + { + return get_lang('Error'); + } +} + + +/** +* This function moves a forum or a forum category up or down +* +* @param $content what is it that we want to make (in)visible: forum category, forum, thread, post +* @param $direction do we want to move it up or down. +* @param $id the id of the content we want to make invisible +* @todo consider removing the table_item_property calls here but this can prevent unwanted side effects when a forum does not have an entry in +* the item_property table but does have one in the forum table. +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function move_up_down($content, $direction, $id) +{ + $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + + + // Determine which field holds the sort order + if ($content=='forumcategory') + { + $table=$table_categories; + $sort_column='cat_order'; + $id_column='cat_id'; + $sort_column='cat_order'; + } + elseif ($content=='forum') + { + $table=$table_forums; + $sort_column='forum_order'; + $id_column='forum_id'; + $sort_column='forum_order'; + // we also need the forum_category of this forum + $sql="SELECT forum_category FROM $table_forums WHERE forum_id=".Database::escape_string($id); + $result=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($result); + $forum_category=$row['forum_category']; + } + else + { + return get_lang('Error'); + } + + // determine if need to sort ascending or descending + if ($direction=='down') + { + $sort_direction='ASC'; + } + elseif ($direction=='up') + { + $sort_direction='DESC'; + } + else + { + return get_lang('Error'); + } + + // The SQL statement + if ($content=='forumcategory') + { + $sql="SELECT * FROM".$table_categories." forum_categories, ".$table_item_property." item_properties + WHERE forum_categories.cat_id=item_properties.ref + AND item_properties.tool='".TOOL_FORUM_CATEGORY."' + ORDER BY forum_categories.cat_order $sort_direction"; + } + if ($content=='forum') + { + $sql="SELECT * FROM".$table." WHERE forum_category='".Database::escape_string($forum_category)."' ORDER BY forum_order $sort_direction"; + } + + + // echo $sql.'
'; + + + // finding the items that need to be switched + $result=api_sql_query($sql,__FILE__,__LINE__); + $found=false; + while ($row=Database::fetch_array($result)) + { + //echo $row[$id_column].'-'; + if ($found==true) + { + $next_id=$row[$id_column]; + $next_sort=$row[$sort_column]; + $found=false; + } + if($id==$row[$id_column]) + { + $this_id=$id; + $this_sort=$row[$sort_column]; + $found=true; + } + } + + // Committing the switch + // we do an extra check if we do not have illegal values. If your remove this if statment you will + // be able to mess with the sorting by refreshing the page over and over again. + if ($this_sort<>'' AND $next_sort<>'' AND $next_id<>'' AND $this_id<>'') + { + $sql_update1="UPDATE $table SET $sort_column='".Database::escape_string($this_sort)."' WHERE $id_column='".Database::escape_string($next_id)."'"; + $sql_update2="UPDATE $table SET $sort_column='".Database::escape_string($next_sort)."' WHERE $id_column='".Database::escape_string($this_id)."'"; + api_sql_query($sql_update1,__FILE__,__LINE__); + api_sql_query($sql_update2,__FILE__,__LINE__); + } + + return get_lang(ucfirst($content).'Moved'); +} + + +/** +* This function returns a piece of html code that make the links grey (=invisible for the student) +* +* @param boolean 0/1: 0 = invisible, 1 = visible +* @return string +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function class_visible_invisible($current_visibility_status) +{ + if ($current_visibility_status=='0') + { + return "class='invisible'"; + } +} + +/** +* Retrieve all the information off the forum categories (or one specific) for the current course. +* The categories are sorted according to their sorting order (cat_order +* +* @param $id default ''. When an id is passed we only find the information about that specific forum category. If no id is passed we get all the forum categories. +* @return an array containing all the information about all the forum categories +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_forum_categories($id='') +{ + $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + + $session_condition = isset($_SESSION['id_session']) ? 'AND forum_categories.session_id IN (0,'.intval($_SESSION['id_session']).')' : ''; + + if ($id=='') + { + $sql="SELECT * FROM".$table_categories." forum_categories, ".$table_item_property." item_properties + WHERE forum_categories.cat_id=item_properties.ref + AND item_properties.visibility=1 + AND item_properties.tool='".TOOL_FORUM_CATEGORY."' + $session_condition + ORDER BY forum_categories.cat_order ASC"; + if (is_allowed_to_edit(false,true)) + { + $sql="SELECT * FROM".$table_categories." forum_categories, ".$table_item_property." item_properties + WHERE forum_categories.cat_id=item_properties.ref + AND item_properties.visibility<>2 + AND item_properties.tool='".TOOL_FORUM_CATEGORY."' + $session_condition + ORDER BY forum_categories.cat_order ASC"; + } + } + else + { + $sql="SELECT * FROM".$table_categories." forum_categories, ".$table_item_property." item_properties + WHERE forum_categories.cat_id=item_properties.ref + AND item_properties.tool='".TOOL_FORUM_CATEGORY."' + AND forum_categories.cat_id='".Database::escape_string($id)."' + $session_condition + ORDER BY forum_categories.cat_order ASC"; + } + $result=api_sql_query($sql,__FILE__,__LINE__); + while ($row=Database::fetch_array($result)) + { + if($row['session_id']>0) + { + $sql_session = 'SELECT name FROM '.Database::get_main_table(TABLE_MAIN_SESSION).' WHERE id='.$row['session_id']; + $rs_session = api_sql_query($sql_session,__FILE__,__LINE__); + $row['session_name'] = mysql_result($rs_session,0,0); + } + if ($id=='') + { + $forum_categories_list[$row['cat_id']]=$row; + } + else + { + $forum_categories_list=$row; + } + } + return $forum_categories_list; +} + +/** +* This function retrieves all the fora in a given forum category +* +* @param integer $cat_id the id of the forum category +* @return an array containing all the information about the forums (regardless of their category) +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_forums_in_category($cat_id) +{ + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + + $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties + WHERE forum.forum_category='".Database::escape_string($cat_id)."' + AND forum.forum_id=item_properties.ref + AND item_properties.visibility=1 + AND item_properties.tool='".TOOL_FORUM."' + ORDER BY forum.forum_order ASC"; + if (is_allowed_to_edit(false,true)) + { + $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties + WHERE forum.forum_category='".Database::escape_string($cat_id)."' + AND forum.forum_id=item_properties.ref + AND item_properties.visibility<>2 + AND item_properties.tool='".TOOL_FORUM."' + ORDER BY forum_order ASC"; + } + $result=api_sql_query($sql,__FILE__,__LINE__); + while ($row=Database::fetch_array($result)) + { + $forum_list[$row['forum_id']]=$row; + } + return $forum_list; +} +/** +* Retrieve all the forums (regardless of their category) or of only one. The forums are sorted according to the forum_order. +* Since it does not take the forum category into account there probably will be two or more forums that have forum_order=1, ... +* +* @return an array containing all the information about the forums (regardless of their category) +* @todo check $sql4 because this one really looks fishy. +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_forums($id='') +{ + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + + // **************** GETTING ALL THE FORUMS ************************* // + + $session_condition = isset($_SESSION['id_session']) ? 'AND forum.session_id IN (0,'.intval($_SESSION['id_session']).')' : ''; + $forum_list = array(); + if ($id=='') + { + //-------------- Student -----------------// + // select all the forum information of all forums (that are visible to students) + $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties + WHERE forum.forum_id=item_properties.ref + AND item_properties.visibility=1 + AND item_properties.tool='".TOOL_FORUM."' + $session_condition + ORDER BY forum.forum_order ASC"; + // select the number of threads of the forums (only the threads that are visible) + $sql2="SELECT count(*) AS number_of_threads, threads.forum_id FROM $table_threads threads, ".$table_item_property." item_properties + WHERE threads.thread_id=item_properties.ref + AND item_properties.visibility=1 + AND item_properties.tool='".TOOL_FORUM_THREAD."' + GROUP BY threads.forum_id"; + // select the number of posts of the forum (post that are visible and that are in a thread that is visible) + $sql3="SELECT count(*) AS number_of_posts, posts.forum_id FROM $table_posts posts, $table_threads threads, ".$table_item_property." item_properties + WHERE posts.visible=1 + AND posts.thread_id=threads.thread_id + AND threads.thread_id=item_properties.ref + AND item_properties.visibility=1 + AND item_properties.tool='".TOOL_FORUM_THREAD."' + GROUP BY threads.forum_id"; + + //-------------- Course Admin -----------------// + if (is_allowed_to_edit(false,true)) + { + // select all the forum information of all forums (that are not deleted) + $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties + WHERE forum.forum_id=item_properties.ref + AND item_properties.visibility<>2 + AND item_properties.tool='".TOOL_FORUM."' + $session_condition + ORDER BY forum_order ASC"; + //echo $sql.'
'; + // select the number of threads of the forums (only the threads that are not deleted) + $sql2="SELECT count(*) AS number_of_threads, threads.forum_id FROM $table_threads threads, ".$table_item_property." item_properties + WHERE threads.thread_id=item_properties.ref + AND item_properties.visibility<>2 + AND item_properties.tool='".TOOL_FORUM_THREAD."' + GROUP BY threads.forum_id"; + //echo $sql2.'
'; + // select the number of posts of the forum + $sql3="SELECT count(*) AS number_of_posts, forum_id FROM $table_posts GROUP BY forum_id"; + //echo $sql3.'
'; + } + + + } + // **************** GETTING ONE SPECIFIC FORUM ************************* // + // We could do the splitup into student and course admin also but we want to have as much as information about a certain forum as possible + // so we do not take too much information into account. This function (or this section of the function) is namely used to fill the forms + // when editing a forum (and for the moment it is the only place where we use this part of the function) + else + { + // select all the forum information of the given forum (that is not deleted) + $sql="SELECT * FROM ".$table_forums." forum , ".$table_item_property." item_properties + WHERE forum.forum_id=item_properties.ref + AND forum_id='".Database::escape_string($id)."' + AND item_properties.visibility<>2 + AND item_properties.tool='".TOOL_FORUM."' + $session_condition + ORDER BY forum_order ASC"; + // select the number of threads of the forum + $sql2="SELECT count(*) AS number_of_threads, forum_id FROM $table_threads WHERE forum_id=".Database::escape_string($id)." GROUP BY forum_id"; + // select the number of posts of the forum + $sql3="SELECT count(*) AS number_of_posts, forum_id FROM $table_posts WHERE forum_id=".Database::escape_string($id)." GROUP BY forum_id"; + // select the last post and the poster (note: this is probably no longer needed) + $sql4="SELECT post.post_id, post.forum_id, post.poster_id, post.poster_name, post.post_date, users.lastname, users.firstname + FROM $table_posts post, $table_users users + WHERE forum_id=".Database::escape_string($id)." + AND post.poster_id=users.user_id + GROUP BY post.forum_id + ORDER BY post.post_id ASC"; + } + // handling all the forum information + $result=api_sql_query($sql,__FILE__,__LINE__); + while ($row=Database::fetch_array($result)) + { + if($row['session_id']>0) + { + $sql_session = 'SELECT name FROM '.Database::get_main_table(TABLE_MAIN_SESSION).' WHERE id='.$row['session_id']; + $rs_session = api_sql_query($sql_session,__FILE__,__LINE__); + $row['session_name'] = mysql_result($rs_session,0,0); + } + if ($id=='') + { + $forum_list[$row['forum_id']]=$row; + } + else + { + $forum_list=$row; + } + } + + // handling the threadcount information + $result2=api_sql_query($sql2,__FILE__,__LINE__); + while ($row2=Database::fetch_array($result2)) + { + if ($id=='') + { + $forum_list[$row2['forum_id']]['number_of_threads']=$row2['number_of_threads']; + } + else + { + $forum_list['number_of_threads']=$row2['number_of_threads'];; + } + } + // handling the postcount information + $result3=api_sql_query($sql3,__FILE__,__LINE__); + while ($row3=Database::fetch_array($result3)) + { + if ($id=='') + { + if (array_key_exists($row3['forum_id'],$forum_list)) // this is needed because sql3 takes also the deleted forums into account + { + $forum_list[$row3['forum_id']]['number_of_posts']=$row3['number_of_posts']; + } + } + else + { + $forum_list['number_of_posts']=$row3['number_of_posts']; + } + } + + // finding the last post information (last_post_id, last_poster_id, last_post_date, last_poster_name, last_poster_lastname, last_poster_firstname) + if ($id=='') + { + if(is_array($forum_list)) + { + foreach ($forum_list as $key=>$value) + { + $last_post_info_of_forum=get_last_post_information($key,is_allowed_to_edit(false,true)); + $forum_list[$key]['last_post_id']=$last_post_info_of_forum['last_post_id']; + $forum_list[$key]['last_poster_id']=$last_post_info_of_forum['last_poster_id']; + $forum_list[$key]['last_post_date']=$last_post_info_of_forum['last_post_date']; + $forum_list[$key]['last_poster_name']=$last_post_info_of_forum['last_poster_name']; + $forum_list[$key]['last_poster_lastname']=$last_post_info_of_forum['last_poster_lastname']; + $forum_list[$key]['last_poster_firstname']=$last_post_info_of_forum['last_poster_firstname']; + } + } + else + { + $forum_list = array(); + } + } + else + { + $last_post_info_of_forum=get_last_post_information($id,is_allowed_to_edit(false,true)); + $forum_list['last_post_id']=$last_post_info_of_forum['last_post_id']; + $forum_list['last_poster_id']=$last_post_info_of_forum['last_poster_id']; + $forum_list['last_post_date']=$last_post_info_of_forum['last_post_date']; + $forum_list['last_poster_name']=$last_post_info_of_forum['last_poster_name']; + $forum_list['last_poster_lastname']=$last_post_info_of_forum['last_poster_lastname']; + $forum_list['last_poster_firstname']=$last_post_info_of_forum['last_poster_firstname']; + } + return $forum_list; +} + +/** +* This functions gets all the last post information of a certain forum +* +* @param $forum_id the id of the forum we want to know the last post information of. +* @param $show_invisibles +* @return array containing all the information about the last post (last_post_id, last_poster_id, last_post_date, last_poster_name, last_poster_lastname, last_poster_firstname) +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_last_post_information($forum_id, $show_invisibles=false) +{ + + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + + $sql="SELECT post.post_id, post.forum_id, post.poster_id, post.poster_name, post.post_date, users.lastname, users.firstname, post.visible, thread_properties.visibility AS thread_visibility, forum_properties.visibility AS forum_visibility + FROM $table_posts post, $table_users users, $table_item_property thread_properties, $table_item_property forum_properties + WHERE post.forum_id=".Database::escape_string($forum_id)." + AND post.poster_id=users.user_id + AND post.thread_id=thread_properties.ref + AND thread_properties.tool='".TOOL_FORUM_THREAD."' + AND post.forum_id=forum_properties.ref + AND forum_properties.tool='".TOOL_FORUM."' + ORDER BY post.post_id DESC"; + $result=api_sql_query($sql,__LINE__,__FILE__); + if ($show_invisibles==true) + { + $row=Database::fetch_array($result); + $return_array['last_post_id']=$row['post_id']; + $return_array['last_poster_id']=$row['poster_id']; + $return_array['last_post_date']=$row['post_date']; + $return_array['last_poster_name']=$row['poster_name']; + $return_array['last_poster_lastname']=$row['lastname']; + $return_array['last_poster_firstname']=$row['firstname']; + return $return_array; + } + else + { + // we have to loop through the results to find the first one that is actually visible to students (forum_category, forum, thread AND post are visible) + while ($row=Database::fetch_array($result)) + { + if ($row['visible']=='1' AND $row['thread_visibility']=='1' AND $row['forum_visibility']=='1') + { + $return_array['last_post_id']=$row['post_id']; + $return_array['last_poster_id']=$row['poster_id']; + $return_array['last_post_date']=$row['post_date']; + $return_array['last_poster_name']=$row['poster_name']; + $return_array['last_poster_lastname']=$row['lastname']; + $return_array['last_poster_firstname']=$row['firstname']; + return $return_array; + } + } + } +} + +/** +* Retrieve all the threads of a given forum +* +* @param +* @return an array containing all the information about the threads +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_threads($forum_id) +{ + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + + // important note: it might seem a little bit awkward that we have 'thread.locked as locked' in the sql statement + // because we also have thread.* in it. This is because thread has a field locked and post also has the same field + // since we are merging these we would have the post.locked value but in fact we want the thread.locked value + // This is why it is added to the end of the field selection + + + $sql = "SELECT thread.*, item_properties.*, post.*, users.firstname, users.lastname, users.user_id, + last_poster_users.firstname as last_poster_firstname , last_poster_users.lastname as last_poster_lastname, last_poster_users.user_id as last_poster_user_id, thread.locked as locked + FROM $table_threads thread + INNER JOIN $table_item_property item_properties + ON thread.thread_id=item_properties.ref + AND item_properties.visibility='1' + AND item_properties.tool='".TOOL_FORUM_THREAD."' + LEFT JOIN $table_users users + ON thread.thread_poster_id=users.user_id + LEFT JOIN $table_posts post + ON thread.thread_last_post = post.post_id + LEFT JOIN $table_users last_poster_users + ON post.poster_id= last_poster_users.user_id + WHERE thread.forum_id='".Database::escape_string($forum_id)."' + ORDER BY thread.thread_sticky DESC, thread.thread_date DESC"; + if (is_allowed_to_edit(false,true)) + { + // important note: it might seem a little bit awkward that we have 'thread.locked as locked' in the sql statement + // because we also have thread.* in it. This is because thread has a field locked and post also has the same field + // since we are merging these we would have the post.locked value but in fact we want the thread.locked value + // This is why it is added to the end of the field selection + $sql = "SELECT thread.*, item_properties.*, post.*, users.firstname, users.lastname, users.user_id, + last_poster_users.firstname as last_poster_firstname , last_poster_users.lastname as last_poster_lastname, last_poster_users.user_id as last_poster_user_id, thread.locked as locked + FROM $table_threads thread + INNER JOIN $table_item_property item_properties + ON thread.thread_id=item_properties.ref + AND item_properties.visibility<>2 + AND item_properties.tool='".TOOL_FORUM_THREAD."' + LEFT JOIN $table_users users + ON thread.thread_poster_id=users.user_id + LEFT JOIN $table_posts post + ON thread.thread_last_post = post.post_id + LEFT JOIN $table_users last_poster_users + ON post.poster_id= last_poster_users.user_id + WHERE thread.forum_id='".Database::escape_string($forum_id)."' + ORDER BY thread.thread_sticky DESC, thread.thread_date DESC"; + } + $result=api_sql_query($sql, __FILE__, __LINE__); + while ($row=Database::fetch_array($result,'ASSOC')) + { + $thread_list[]=$row; + } + return $thread_list; +} + +/** +* Retrieve all posts of a given thread +* +* @return an array containing all the information about the posts of a given thread +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_posts($thread_id) +{ + + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + + // note: change these SQL so that only the relevant fields of the user table are used + if (api_is_allowed_to_edit(false,true)) + { + $sql = "SELECT * FROM $table_posts posts + LEFT JOIN $table_users users + ON posts.poster_id=users.user_id + WHERE posts.thread_id='".Database::escape_string($thread_id)."' + ORDER BY posts.post_id ASC"; + } + else + { + // students can only se the posts that are approved (posts.visible='1') + $sql = "SELECT * FROM $table_posts posts + LEFT JOIN $table_users users + ON posts.poster_id=users.user_id + WHERE posts.thread_id='".Database::escape_string($thread_id)."' + AND posts.visible='1' + ORDER BY posts.post_id ASC"; + } + $result=api_sql_query($sql, __FILE__, __LINE__); + while ($row=Database::fetch_array($result)) + { + $post_list[]=$row; + } + return $post_list; +} + +/** +* This function return the html syntax for the image +* +* @param $image_url The url of the image (absolute or relative) +* @param $alt The alt text (when the images cannot be displayed). http://www.w3.org/TR/html4/struct/objects.html#adef-alt +* @param $title The title of the image. Most browsers display this as 'tool tip'. http://www.w3.org/TR/html4/struct/global.html#adef-title +* +* @todo this is the same as the Display::xxx function, so it can be removed => all calls have to be changed also +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function icon($image_url,$alt='',$title='') +{ + if ($title=='') + { + $title=$alt; + } + return ''.$alt.''; +} + +/************************************************************************** + NEW TOPIC FUNCTIONS +**************************************************************************/ + +/** +* This function retrieves all the information of a post +* +* @param $forum_id integer that indicates the forum +* @return array returns +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_post_information($post_id) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + + $sql="SELECT * FROM ".$table_posts."posts, ".$table_users." users WHERE posts.poster_id=users.user_id AND posts.post_id='".Database::escape_string($post_id)."'"; + $result=api_sql_query($sql, __FILE__, __LINE__); + $row=Database::fetch_array($result); + return $row; +} + + +/** +* This function retrieves all the information of a thread +* +* @param $forum_id integer that indicates the forum +* @return array returns +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_thread_information($thread_id) +{ + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + + $sql="SELECT * FROM ".$table_threads." threads, ".$table_item_property." item_properties + WHERE item_properties.tool='".TOOL_FORUM_THREAD."' + AND item_properties.ref='".(int)$thread_id."' + AND threads.thread_id='".(int)$thread_id."'"; + $result=api_sql_query($sql, __FILE__, __LINE__); + $row=Database::fetch_array($result); + return $row; +} + +/** +* This function retrieves forum thread users details +* @param int Thread ID +* @param string Course DB name (optional) +* @return array Array of type ([user_id=>w,lastname=>x,firstname=>y,thread_id=>z],[]) +* @author Christian Fasanando , +* @version October 2008, dokeos 1.8 +*/ + +function get_thread_users_details($thread_id, $db_name = null) +{ + $t_posts = Database :: get_course_table(TABLE_FORUM_POST, (empty($db_name)?null:$db_name)); + $t_users = Database :: get_main_table(TABLE_MAIN_USER); + $sql = "SELECT DISTINCT user_id, lastname, firstname, thread_id + FROM $t_posts , $t_users + WHERE poster_id = user_id + AND thread_id = '".(int)$thread_id."' + AND status not in('1')"; + + $result = api_sql_query($sql, __FILE__, __LINE__); + return $result; +} + +/** +* This function retrieves qualified forum thread users +* @param int Thread ID +* @param string Course DB name (optional) +* @return array Array of type ([user_id=>w,lastname=>x,firstname=>y,thread_id=>z],[]) +* @author Jhon Hinojosa, +* @version October 2008, dokeos 1.8 +*/ + +function get_thread_users_qualify($thread_id, $db_name = null) +{ + $t_posts = Database :: get_course_table(TABLE_FORUM_POST, (empty($db_name)?null:$db_name)); + $t_qualify = Database :: get_course_table(TABLE_FORUM_THREAD_QUALIFY, (empty($db_name)?null:$db_name)); + $t_users = Database :: get_main_table(TABLE_MAIN_USER); + + $sql = "SELECT post.poster_id, user.lastname, user.firstname, post.thread_id,user.user_id,qualify.qualify + FROM $t_posts post, $t_qualify qualify, $t_users user + WHERE post.poster_id = user.user_id + AND post.poster_id = qualify.user_id + AND qualify.thread_id = '".(int)$thread_id."' + AND user.status not in('1') + GROUP BY post.poster_id "; + $result = api_sql_query($sql, __FILE__, __LINE__); + return $result; +} + +/** +* This function retrieves unqualified forum thread users +* @param int Thread ID +* @param string Course DB name (optional) +* @return array Array of type ([user_id=>w,lastname=>x,firstname=>y,thread_id=>z],[]) +* @author Christian Fasanando, +* @version October 2008, dokeos 1.8 +*/ + +function get_thread_users_not_qualify($thread_id, $db_name = null) +{ + $t_posts = Database :: get_course_table(TABLE_FORUM_POST, (empty($db_name)?null:$db_name)); + $t_qualify = Database :: get_course_table(TABLE_FORUM_THREAD_QUALIFY, (empty($db_name)?null:$db_name)); + $t_users = Database :: get_main_table(TABLE_MAIN_USER); + + $sql1 = "select user_id FROM $t_qualify WHERE thread_id = '".(int)$thread_id."'"; + $result1 = api_sql_query($sql1,__FILE__,__LINE__); + $cad=''; + while ($row=Database::fetch_array($result1)) + { + $cad .= $row['user_id'].','; + } + if($cad=='') + { + $cad='0'; + } + else + { + $cad=substr($cad,0,strlen($cad)-1); + } + $sql = "SELECT DISTINCT user.user_id, user.lastname, user.firstname, post.thread_id + FROM $t_posts post, $t_users user + WHERE post.poster_id = user.user_id + AND user.user_id NOT IN (".$cad.") + AND post.thread_id = '".(int)$thread_id."' + AND user.status not in('1')"; + + $result = api_sql_query($sql, __FILE__, __LINE__); + return $result; +} + + +/** +* This function retrieves all the information of a given forum_id +* +* @param $forum_id integer that indicates the forum +* @return array returns +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +* +* @deprecated this functionality is now moved to get_forums($forum_id) +*/ +function get_forum_information($forum_id) +{ + + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + $table_forums = Database :: get_course_table(TABLE_FORUM); + + $sql="SELECT * FROM ".$table_forums." forums, ".$table_item_property." item_properties + WHERE item_properties.tool='".TOOL_FORUM."' + AND item_properties.ref='".(int)$forum_id."' + AND forums.forum_id='".(int)$forum_id."'"; + $result=api_sql_query($sql, __FILE__, __LINE__); + $row=Database::fetch_array($result); + $row['approval_direct_post'] = 0; // we can't anymore change this option, so it should always be activated + return $row; +} + +/** +* This function retrieves all the information of a given forumcategory id +* +* @param $forum_id integer that indicates the forum +* @return array returns +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_forumcategory_information($cat_id) +{ + $table_categories = Database :: get_course_table(TABLE_FORUM_CATEGORY); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + + $sql="SELECT * FROM ".$table_categories." forumcategories, ".$table_item_property." item_properties + WHERE item_properties.tool='".TOOL_FORUM_CATEGORY."' + AND item_properties.ref='".Database::escape_string($cat_id)."' + AND forumcategories.cat_id='".Database::escape_string($cat_id)."'"; + $result=api_sql_query($sql, __FILE__, __LINE__); + $row=Database::fetch_array($result); + return $row; +} + +/** +* This function counts the number of forums inside a given category +* +* @param $cat_id the id of the forum category +* @todo an additional parameter that takes the visibility into account. For instance $countinvisible=0 would return the number +* of visible forums, $countinvisible=1 would return the number of visible and invisible forums +* @return int the number of forums inside the given category +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function count_number_of_forums_in_category($cat_id) +{ + $table_forums = Database :: get_course_table(TABLE_FORUM); + + $sql="SELECT count(*) AS number_of_forums FROM ".$table_forums." WHERE forum_category='".Database::escape_string($cat_id)."'"; + $result=api_sql_query($sql, __FILE__, __LINE__); + $row=Database::fetch_array($result); + return $row['number_of_forums']; +} + +/** +* This function stores a new thread. This is done through an entry in the forum_thread table AND +* in the forum_post table because. The threads are also stored in the item_property table. (forum posts are not (yet)) +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function store_thread($values) +{ + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + global $_user; + global $_course; + global $current_forum; + global $origin; + global $forum_table_attachment; + + $upload_ok=1; + $has_attachment=false; + + if(!empty($_FILES['user_upload']['name'])) + { + $upload_ok = process_uploaded_file($_FILES['user_upload']); + $has_attachment=true; + } + + + if($upload_ok) + { + + $post_date=date('Y-m-d H:i:s'); + + if ($current_forum['approval_direct_post']=='1' AND !api_is_allowed_to_edit()) + { + $visible=0; // the post is not approved yet. + } + else + { + $visible=1; + } + + $clean_post_title=Security::remove_XSS(Database::escape_string(htmlspecialchars($values['post_title']))); + + // We first store an entry in the forum_thread table because the thread_id is used in the forum_post table + $sql="INSERT INTO $table_threads (thread_title, forum_id, thread_poster_id, thread_poster_name, thread_date, thread_sticky,thread_title_qualify,thread_qualify_max) + VALUES ('".$clean_post_title."', + '".Database::escape_string($values['forum_id'])."', + '".Database::escape_string($_user['user_id'])."', + '".Database::escape_string($values['poster_name'])."', + '".Database::escape_string($post_date)."', + '".Database::escape_string($values['thread_sticky'])."'," . + "'".Database::escape_string($values['calification_notebook_title'])."'," . + "'".Database::escape_string($values['numeric_calification'])."')"; + $result=api_sql_query($sql, __LINE__, __FILE__); + $last_thread_id=Database::insert_id(); + + //add option gradebook qualify + + if($values['thread_qualify_gradebook']=='1'){ + //add function gradebook + $coursecode=api_get_course_id(); + $resourcetype=5; + $resourceid=$last_thread_id; + $resourcename=$values['calification_notebook_title']; + $maxqualify=$values['numeric_calification']; + $resourcedescription=''; + $sessionid=api_get_session_id(); + + //is_resource_in_course_gradebook($course_code, $resource_type, $resource_id); + add_resource_to_course_gradebook($coursecode,$resourcetype,$resourceid,$resourcename,0,$maxqualify,$resourcedescription,null,0,$sessionid); + + } + $my_user_id = api_get_user_id(); + api_item_property_update($_course, TOOL_FORUM_THREAD, $last_thread_id,"ForumThreadAdded", $my_user_id); + // if the forum properties tell that the posts have to be approved we have to put the whole thread invisible + // because otherwise the students will see the thread and not the post in the thread. + // we also have to change $visible because the post itself has to be visible in this case (otherwise the teacher would have + // to make the thread visible AND the post + + if ($visible==0) + { + api_item_property_update($_course, TOOL_FORUM_THREAD, $last_thread_id,"invisible", $my_user_id); + $visible=1; + } + + + // We now store the content in the table_post table + $sql="INSERT INTO $table_posts (post_title, post_text, thread_id, forum_id, poster_id, poster_name, post_date, post_notification, post_parent_id, visible) + VALUES ('".$clean_post_title."', + '".Database::escape_string($values['post_text'])."', + '".Database::escape_string($last_thread_id)."', + '".Database::escape_string($values['forum_id'])."', + '".Database::escape_string($_user['user_id'])."', + '".Database::escape_string($values['poster_name'])."', + '".Database::escape_string($post_date)."', + '".Database::escape_string($values['post_notification'])."','0', + '".Database::escape_string($visible)."')"; + api_sql_query($sql, __LINE__, __FILE__); + $last_post_id=Database::insert_id(); + + // now have to update the thread table to fill the thread_last_post field (so that we know when the thread has been updated for the last time) + $sql="UPDATE $table_threads SET thread_last_post='".Database::escape_string($last_post_id)."' WHERE thread_id='".Database::escape_string($last_thread_id)."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + + $message=get_lang('NewThreadStored'); + + + // Storing the attachments if any + if ($has_attachment) + { + $courseDir = $_course['path'].'/upload/forum'; + $sys_course_path = api_get_path(SYS_COURSE_PATH); + $updir = $sys_course_path.$courseDir; + + // Try to add an extension to the file if it hasn't one + $new_file_name = add_ext_on_mime(stripslashes($_FILES['user_upload']['name']), $_FILES['user_upload']['type']); + + // user's file name + $file_name =$_FILES['user_upload']['name']; + + if (!filter_extension($new_file_name)) + { + Display :: display_error_message(get_lang('UplUnableToSaveFileFilteredExtension')); + } + else + { + $new_file_name = uniqid(''); + $new_path=$updir.'/'.$new_file_name; + $result= @move_uploaded_file($_FILES['user_upload']['tmp_name'], $new_path); + $comment=$values['file_comment']; + + // Storing the attachments if any + if ($result) + { + $sql='INSERT INTO '.$forum_table_attachment.'(filename,comment, path, post_id,size) '. + "VALUES ( '".Database::escape_string($file_name)."', '".Database::escape_string($comment)."', '".Database::escape_string($new_file_name)."' , '".$last_post_id."', '".$_FILES['user_upload']['size']."' )"; + $result=api_sql_query($sql, __LINE__, __FILE__); + $message.=' / '.get_lang('FileUploadSucces').'
'; + + $last_id=Database::insert_id(); + api_item_property_update($_course, TOOL_FORUM_ATTACH, $last_id ,'ForumAttachmentAdded', api_get_user_id()); + + } + } + } + else + { + $message.='
'; + } + + if ($current_forum['approval_direct_post']=='1' AND !api_is_allowed_to_edit()) + { + $message.=get_lang('MessageHasToBeApproved').'
'; + $message.=get_lang('ReturnTo').' '.get_lang('Forum').'
'; + } + else + { + $message.=get_lang('ReturnTo').' '.get_lang('Forum').'
'; + $message.=get_lang('ReturnTo').' '.get_lang('Message').''; + } + $reply_info['new_post_id'] = $last_post_id; + + if ($values['post_notification'] == 1) + { + set_notification('thread',$last_thread_id, true); + } + + send_notification_mails($last_thread_id,$reply_info); + session_unregister('formelements'); + session_unregister('origin'); + session_unregister('breadcrumbs'); + session_unregister('addedresource'); + session_unregister('addedresourceid'); + + Display :: display_confirmation_message($message,false); + } + else + { + Display::display_error_message(get_lang('UplNoFileUploaded')); + } +} +/** +* This function displays the form that is used to add a post. This can be a new thread or a reply. +* @param $action is the parameter that determines if we are +* 1. newthread: adding a new thread (both empty) => No I-frame +* 2. replythread: Replying to a thread ($action = replythread) => I-frame with the complete thread (if enabled) +* 3. replymessage: Replying to a message ($action =replymessage) => I-frame with the complete thread (if enabled) (I first thought to put and I-frame with the message only) +* 4. quote: Quoting a message ($action= quotemessage) => I-frame with the complete thread (if enabled). The message will be in the reply. (I first thought not to put an I-frame here) +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function show_add_post_form($action='', $id='', $form_values='') +{ + global $forum_setting; + global $current_forum; + global $_user; + global $origin; + global $charset; + + // initiate the object + $form = new FormValidator('thread', 'post', api_get_self().'?forum='.Security::remove_XSS($_GET['forum']).'&thread='.Security::remove_XSS($_GET['thread']).'&post='.Security::remove_XSS($_GET['post']).'&action='.Security::remove_XSS($_GET['action']).'&origin='.$origin); + $form->setConstants(array('forum' => '5')); + + // settting the form elements + $form->addElement('hidden', 'forum_id', strval(intval($_GET['forum']))); + $form->addElement('hidden', 'thread_id', strval(intval($_GET['thread']))); + + // if anonymous posts are allowed we also display a form to allow the user to put his name or username in + if ($current_forum['allow_anonymous']==1 AND !isset($_user['user_id'])) + { + $form->addElement('text', 'poster_name', get_lang('Name')); + } + + $form->addElement('text', 'post_title', get_lang('Title'),'class="input_titles"'); + $form->addElement('html_editor', 'post_text', get_lang('Text')); + + if ($forum_setting['allow_post_notificiation'] AND isset($_user['user_id'])) + { + $form->addElement('checkbox', 'post_notification', '', get_lang('NotifyByEmail').' ('.$_user['mail'].')'); + } + + if ($forum_setting['allow_sticky'] AND api_is_allowed_to_edit() AND $action=='newthread') + { + $form->addElement('checkbox', 'thread_sticky', '', get_lang('StickyPost')); + } + + if ($current_forum['allow_attachments']=='1' OR api_is_allowed_to_edit()) + { + //$form->add_resource_button(); + $values = $form->exportValues(); + } + + // user upload + $form->addElement('html','
'.get_lang('AddAnAttachment').'


'); + $form->addElement('file','user_upload',ucwords(get_lang('FileName')),''); + $form->addElement('textarea','file_comment',get_lang('FileComment'),array ('rows' => 4, 'cols' => 34)); + + $userid =api_get_user_id(); + $info =api_get_user_info($userid); + $courseid=api_get_course_id(); + + if($info['status']!='5' && $info['status']!='6' && $_GET['action']!="replythread"&&(!$_GET['cidReq']) && !$_GET['forum']) + { + // thread qualify + $form->addElement('static','Group', '
'.get_lang('QualifyThread').''); + $form->addElement('checkbox', 'thread_qualify_gradebook', '', get_lang('QualifyThreadGradebook')); + $form->addElement('html','
'); + $form->addElement('text', 'calification_notebook_title', get_lang('TitleColumnGradebook')); + $form->addElement('text', 'numeric_calification', get_lang('QualifyNumeric'),'Style="width:40px"'); + $form->addElement('html','
'); + } + + $form->addElement('submit', 'SubmitPost', get_lang('OK')); + $form->add_real_progress_bar('DocumentUpload','user_upload'); + + if (!empty($form_values)) + { + $defaults['post_title']=prepare4display(Security::remove_XSS($form_values['post_title'])); + $defaults['post_text']=prepare4display(Security::remove_XSS($form_values['post_text'])); + $defaults['post_notification']=Security::remove_XSS($form_values['post_notification']); + $defaults['thread_sticky']=Security::remove_XSS($form_values['thread_sticky']); + } + + // if we are quoting a message we have to retrieve the information of the post we are quoting so that + // we can add this as default to the textarea + if (($action=='quote' OR $action=='replymessage') and isset($_GET['post'])) + { + // we also need to put the parent_id of the post in a hidden form when we are quoting or replying to a message (<> reply to a thread !!!) + $form->addElement('hidden', 'post_parent_id', strval(intval($_GET['post']))); // note this has to be cleaned first + + // if we are replying or are quoting then we display a default title. + $values=get_post_information($_GET['post']); // note: this has to be cleaned first + $defaults['post_title']=get_lang('ReplyShort').html_entity_decode($values['post_title'],ENT_QUOTES,$charset); + // When we are quoting a message then we have to put that message into the wysiwyg editor. + // note: the style has to be hardcoded here because using class="quote" didn't work + if($action=='quote') + { + $defaults['post_text']='
 
'.get_lang('Quoting').' '.$values['firstname'].' '.$values['lastname'].':
'.prepare4display($values['post_text']).'
 
 
'; + } + } + $form->setDefaults($defaults); + + // the course admin can make a thread sticky (=appears with special icon and always on top) + $form->addRule('post_title', '
'.get_lang('ThisFieldIsRequired'), 'required'); + if ($current_forum['allow_anonymous']==1 AND !isset($_user['user_id'])) + { + $form->addRule('poster_name', '
'.get_lang('ThisFieldIsRequired'), 'required'); + } + + // The validation or display + if( $form->validate() ) + { + $values = $form->exportValues(); + return $values; + } + else + { + $form->display(); + echo '
'; + if ($forum_setting['show_thread_iframe_on_reply'] and $action<>'newthread') + { + echo ""; + } + } +} +/** + * this function stores the qualified thread +* @param integer contains the information of current user_id +* @param integer contains the information of current thread_id +* @param integer contains the information of current thread_qualify +* @param integer contains the information of current qualify_user_id +* @param date contains the information of current qualify_time +* @param integer contains the information of current session_id +* @return integer contains the information of current thread_qualify; +* @author Isaac Flores , U.N.A.S University +* @version October 2008, dokeos 1.8.6 + **/ +function store_theme_qualify($user_id,$thread_id,$thread_qualify=0,$qualify_user_id=0,$qualify_time,$session_id=null) +{ + $table_threads_qualify = Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY,''); + $table_threads = Database::get_course_table(TABLE_FORUM_THREAD,''); + + if ($user_id==strval(intval($user_id)) && $thread_id==strval(intval($thread_id)) && $thread_qualify==strval(intval($thread_qualify))) { + + //testing + + $sql_string="SELECT thread_qualify_max FROM ". $table_threads ." WHERE thread_id=".Database::escape_string($thread_id).""; + $res_string=api_sql_query($sql_string,__FILE__,__LINE__); + $row_string=Database::fetch_array($res_string); + + if($thread_qualify<=$row_string[0]){ + + $sql1="SELECT COUNT(*) FROM ".$table_threads_qualify." WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; + $res1=api_sql_query($sql1); + $row=Database::fetch_array($res1); + + if($row[0]==0){ + $sql="INSERT INTO $table_threads_qualify (user_id," . + "thread_id,qualify,qualify_user_id,qualify_time,session_id)" . + "VALUES('".Database::escape_string($user_id)."','".Database::escape_string($thread_id)."','".Database::escape_string($thread_qualify)."'," . + "'".Database::escape_string($qualify_user_id)."','".Database::escape_string($qualify_time)."','".Database::escape_string($session_id)."')"; + $res=api_sql_query($sql,__FILE__,__LINE__); + + return $res; + }else{ + + $sql1="SELECT qualify FROM ".$table_threads_qualify." WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; + $rs=api_sql_query($sql1,__FILE__,__LINE__); + $row=Database::fetch_array($rs); + $row[1]="update"; + return $row; + + } + + }else{ + return false; + } + + } + +} +/** +* This function show qualify. +* @param string contains the information of option to run +* @param string contains the information the current course id +* @param integer contains the information the current forum id +* @param integer contains the information the current user id +* @param integer contains the information the current thread id +* @return integer qualify +* @example $option=1 obtained the qualification of the current thread +* @author Isaac Flores , U.N.A.S University +* @version October 2008, dokeos 1.8.6 +*/ + function show_qualify($option,$couser_id,$forum_id,$user_id,$thread_id){ + + $table_threads_qualify = Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY,''); + $table_threads = Database::get_course_table(TABLE_FORUM_THREAD,''); + + if($user_id==strval(intval($user_id)) && $thread_id==strval(intval($thread_id)) && $option==1) + { + $sql="SELECT qualify FROM ".$table_threads_qualify." WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; + $rs=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($rs); + return $row[0]; + } + + if($user_id==strval(intval($user_id)) && $option==2){ + + $sql="SELECT thread_qualify_Max FROM ".$table_threads." WHERE thread_id=".Database::escape_string($thread_id).""; + $rs=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($rs); + return $row[0]; + } + + } + +/** +* This function returns the qualification history +* @param integer contains the id of current user_id +* @param integer contains the id of current thread_id +* @param string contains the option id +* @return array Array of type ([user_id=>a,thread_id=>b,qualify=>c,qualify_user_id=>d,qualify_time=>e,session_id=>f],[]) +* @author Christian Fasanando , +* @version October 2008, dokeos 1.8.6 +*/ +function get_historical_qualify($user_id, $thread_id, $opt) { + + $table_threads_qualify_log = Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY_LOG,''); + $opt = Database::escape_string($opt); + if($opt=='false') + { + $sql="SELECT user_id,thread_id,qualify,qualify_user_id,qualify_time,session_id FROM ".$table_threads_qualify_log." WHERE thread_id='".Database::escape_string($thread_id)."' and user_id='".Database::escape_string($user_id)."' ORDER BY qualify_time"; + } + else + { + $sql="SELECT user_id,thread_id,qualify,qualify_user_id,qualify_time,session_id FROM ".$table_threads_qualify_log." WHERE thread_id='".Database::escape_string($thread_id)."' and user_id='".Database::escape_string($user_id)."' ORDER BY qualify_time DESC"; + } + $rs=api_sql_query($sql,__FILE__,__LINE__); + $results = array(); + if (Database::num_rows($rs)>0) { + while ($row = Database::fetch_array($rs)) { + $results[] = $row; + } + } + return $results; +} + +/** +* +* This function store qualify historical. +* @param integer contains the information of option to run +* @param integer contains the information the current course id +* @param integer contains the information the current forum id +* @param integer contains the information the current user id +* @param integer contains the information the current thread id +* @param integer contains the information the current qualify +* @return +* @example $option=1 obtained the qualification of the current thread +* @author Isaac Flores , U.N.A.S University +* @version October 2008, dokeos 1.8.6 +*/ +function store_qualify_historical($option,$couser_id,$forum_id,$user_id,$thread_id,$current_qualify,$qualify_user_id){ + + $table_threads_qualify = Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY,''); + $table_threads =Database::get_course_table(TABLE_FORUM_THREAD,''); + $table_threads_qualify_log=Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY_LOG,''); + $current_date=date('Y-m-d H:i:s'); + + + if($user_id==strval(intval($user_id)) && $thread_id==strval(intval($thread_id)) && $option==1){ + //extract information of thread_qualify + + $sql="SELECT qualify,qualify_time FROM ".$table_threads_qualify." WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; + $rs=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($rs); + + //insert thread_historical + $sql1="INSERT INTO $table_threads_qualify_log (user_id," . + "thread_id,qualify,qualify_user_id,qualify_time,session_id)" . + "VALUES('".Database::escape_string($user_id)."','".Database::escape_string($thread_id)."','".Database::escape_string($row[0])."'," . + "'".Database::escape_string($qualify_user_id)."','".Database::escape_string($row[1])."','')"; + api_sql_query($sql1,__FILE__,__LINE__); + + //update + $sql2="UPDATE ".$table_threads_qualify." SET qualify=".Database::escape_string($current_qualify).",qualify_time='".Database::escape_string($current_date)."' WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; + api_sql_query($sql2,__FILE__,__LINE__); + } +} + +/** +* This function stores a reply in the forum_post table. +* It also updates the forum_threads table (thread_replies +1 , thread_last_post, thread_date) +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function store_reply($values) +{ + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + global $forum_table_attachment; + global $_user; + global $_course; + global $current_forum; + global $origin; + + $post_date=date('Y-m-d H:i:s'); + if ($current_forum['approval_direct_post']=='1' AND !api_is_allowed_to_edit()) + { + $visible=0; // the post is not approved yet. + } + else + { + $visible=1; + } + + $upload_ok=1; + $has_attachment=false; + if(!empty($_FILES['user_upload']['name'])) + { + $upload_ok = process_uploaded_file($_FILES['user_upload']); + $has_attachment=true; + } + + if($upload_ok) + { + // We first store an entry in the forum_post table + $sql="INSERT INTO $table_posts (post_title, post_text, thread_id, forum_id, poster_id, post_date, post_notification, post_parent_id, visible) + VALUES ('".Database::escape_string($values['post_title'])."', + '".Database::escape_string($values['post_text'])."', + '".Database::escape_string($values['thread_id'])."', + '".Database::escape_string($values['forum_id'])."', + '".Database::escape_string($_user['user_id'])."', + '".Database::escape_string($post_date)."', + '".Database::escape_string($values['post_notification'])."', + '".Database::escape_string($values['post_parent_id'])."', + '".Database::escape_string($visible)."')"; + $result=api_sql_query($sql, __LINE__, __FILE__); + $new_post_id=Database::insert_id(); + $values['new_post_id']=$new_post_id; + + $message=get_lang('ReplyAdded'); + + if ($has_attachment) + { + $courseDir = $_course['path'].'/upload/forum'; + $sys_course_path = api_get_path(SYS_COURSE_PATH); + $updir = $sys_course_path.$courseDir; + + // Try to add an extension to the file if it hasn't one + $new_file_name = add_ext_on_mime(stripslashes($_FILES['user_upload']['name']), $_FILES['user_upload']['type']); + + // user's file name + $file_name =$_FILES['user_upload']['name']; + + if (!filter_extension($new_file_name)) + { + Display :: display_error_message(get_lang('UplUnableToSaveFileFilteredExtension')); + } + else + { + $new_file_name = uniqid(''); + $new_path=$updir.'/'.$new_file_name; + $result= @move_uploaded_file($_FILES['user_upload']['tmp_name'], $new_path); + $comment=$values['file_comment']; + + // Storing the attachments if any + if ($result) + { + $sql='INSERT INTO '.$forum_table_attachment.'(filename,comment, path, post_id,size) '. + "VALUES ( '".Database::escape_string($file_name)."', '".Database::escape_string($comment)."', '".Database::escape_string($new_file_name)."' , '".$new_post_id."', '".$_FILES['user_upload']['size']."' )"; + $result=api_sql_query($sql, __LINE__, __FILE__); + $message.=' / '.get_lang('FileUploadSucces'); + $last_id=Database::insert_id(); + api_item_property_update($_course, TOOL_FORUM_ATTACH, $last_id ,'ForumAttachmentAdded', api_get_user_id()); + } + } + } + + // update the thread + update_thread($values['thread_id'], $new_post_id,$post_date); + + // update the forum + api_item_property_update($_course, TOOL_FORUM, $values['forum_id'],"NewMessageInForum", api_get_user_id()); + + if ($current_forum['approval_direct_post']=='1' AND !api_is_allowed_to_edit()) + { + $message.='
'.get_lang('MessageHasToBeApproved').'
'; + } + + $message.='
'.get_lang('ReturnTo').' '.get_lang('Forum').'
'; + $message.=get_lang('ReturnTo').' '.get_lang('Message').''; + + // setting the notification correctly + if ($values['post_notification'] == 1) + { + set_notification('thread',$values['thread_id'], true); + } + + send_notification_mails($values['thread_id'], $values); + + session_unregister('formelements'); + session_unregister('origin'); + session_unregister('breadcrumbs'); + session_unregister('addedresource'); + session_unregister('addedresourceid'); + + Display :: display_confirmation_message($message,false); + + } + else + { + Display::display_error_message(get_lang('UplNoFileUploaded')." ". get_lang('UplSelectFileFirst')); + } + +} + + +/** +* This function displays the form that is used to edit a post. This can be a new thread or a reply. +* @param array contains all the information about the current post +* @param array contains all the information about the current thread +* @param array contains all info about the current forum (to check if attachments are allowed) +* @param array contains the default values to fill the form +* @return void +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function show_edit_post_form($current_post, $current_thread, $current_forum, $form_values='') +{ + global $forum_setting; + global $_user; + + // initiate the object + $form = new FormValidator('edit_post', 'post', api_get_self().'?forum='.Security::remove_XSS($_GET['forum']).'&thread='.Security::remove_XSS($_GET['thread']).'&post='.Security::remove_XSS($_GET['post'])); + + // settting the form elements + $form->addElement('hidden', 'post_id', $current_post['post_id']); + $form->addElement('hidden', 'thread_id', $current_thread['thread_id']); + if ($current_post['post_parent_id']==0) + { + $form->addElement('hidden', 'is_first_post_of_thread', '1'); + } + $form->addElement('text', 'post_title', get_lang('Title'),'class="input_titles"'); + $form->addElement('html_editor', 'post_text', get_lang('Text')); + + if(!$_GET['edit']){ + $form->addElement('static','Group', '
'.get_lang('AlterQualifyThread').''); + $form->addElement('checkbox', 'thread_qualify_gradebook', '', get_lang('QualifyThreadGradebook')); + $defaults['thread_qualify_gradebook']=is_resource_in_course_gradebook(api_get_course_id(),5,$_GET['thread'],api_get_session_id()); + //$form->addElement('check','check_list', '
'.get_lang('El tema es calificable')); + $form->addElement('text', 'calification_notebook_title', get_lang('TitleColumnGradebook'),'value="'.$current_thread[12].'"'); + $form->addElement('text', 'numeric_calification', get_lang('QualifyNumeric'),'value="'.$current_thread[13].'" Style="width:40px"'); + //add gradebook + } + + if ($forum_setting['allow_post_notificiation']) + { + $form->addElement('checkbox', 'post_notification', '', get_lang('NotifyByEmail').' ('.$current_post['email'].')'); + } + if ($forum_setting['allow_sticky'] and api_is_allowed_to_edit() and $current_post['post_parent_id']==0) // the sticky checkbox only appears when it is the first post of a thread + { + $form->addElement('checkbox', 'thread_sticky', '', get_lang('StickyPost')); + if ($current_thread['thread_sticky']==1) + { + $defaults['thread_sticky']=true; + } + } + if ($current_forum['allow_attachments']=='1' OR api_is_allowed_to_edit()) + { + if (empty($form_values) AND !$_POST['SubmitPost']) + { + //edit_added_resources('forum_post',$current_post['post_id']); + } + //$form->add_resource_button(); + $values = $form->exportValues(); + } + + + $form->addElement('submit', 'SubmitPost', get_lang('Ok')); + global $charset; + // setting the default values for the form elements + $defaults['post_title']=prepare4display(html_entity_decode($current_post['post_title'],ENT_QUOTES,$charset)); + $defaults['post_text']=prepare4display($current_post['post_text']); + if ($current_post['post_notification']==1) + { + $defaults['post_notification']=true; + } + + if (!empty($form_values)) + { + $defaults['post_title']=Security::remove_XSS($form_values['post_title']); + $defaults['post_text']=Security::remove_XSS($form_values['post_text']); + $defaults['post_notification']=Security::remove_XSS($form_values['post_notification']); + $defaults['thread_sticky']=Security::remove_XSS($form_values['thread_sticky']); + } + + $form->setDefaults($defaults); + + // the course admin can make a thread sticky (=appears with special icon and always on top) + + $form->addRule('post_title', '
'.get_lang('ThisFieldIsRequired'), 'required'); + + // The validation or display + if( $form->validate() ) + { + $values = $form->exportValues(); + return $values; + } + else + { + $form->display(); + } +} + +/** +* This function stores the edit of a post in the forum_post table. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function store_edit_post($values) +{ + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + // first we check if the change affects the thread and if so we commit the changes (sticky and post_title=thread_title are relevant) + if (array_key_exists('is_first_post_of_thread',$values) AND $values['is_first_post_of_thread']=='1') + { + $sql="UPDATE $table_threads SET thread_title='".Database::escape_string($values['post_title'])."', + thread_sticky='".Database::escape_string($values['thread_sticky'])."'," . + "thread_title_qualify='".Database::escape_string($values['calification_notebook_title'])."'," . + "thread_qualify_max='".Database::escape_string($values['numeric_calification'])."' + WHERE thread_id='".Database::escape_string($values['thread_id'])."'"; + + api_sql_query($sql,__FILE__, __LINE__); + } + + // update the post_title and the post_text + $sql="UPDATE $table_posts SET post_title='".Database::escape_string($values['post_title'])."', + post_text='".Database::escape_string($values['post_text'])."', + post_notification='".Database::escape_string($values['post_notification'])."' + WHERE post_id='".Database::escape_string($values['post_id'])."'"; + //error_log($sql); + api_sql_query($sql,__FILE__, __LINE__); + + if (api_is_course_admin()==true) { + $ccode = api_get_course_id(); + $sid = api_get_session_id(); + //var_dump($values); + $link_id = is_resource_in_course_gradebook($ccode,5,$values['thread_id'],$sid); + if ($values['thread_qualify_gradebook']!=1) { + if ($link_id !== false) { + remove_resource_from_course_gradebook($link_id); + } + } else { + if ($link_id === false) { + add_resource_to_course_gradebook($ccode,5,$values['thread_id'],Database::escape_string($values['calification_notebook_title']),0,$values['numeric_calification'],null,null,0,$sid); + } + } + } + // Storing the attachments if any + //update_added_resources('forum_post',$values['post_id']); + + $message=get_lang('EditPostStored').'
'; + $message.=get_lang('ReturnTo').' '.get_lang('Forum').'
'; + $message.=get_lang('ReturnTo').' '.get_lang('Message').''; + + session_unregister('formelements'); + session_unregister('origin'); + session_unregister('breadcrumbs'); + session_unregister('addedresource'); + session_unregister('addedresourceid'); + + Display :: display_confirmation_message($message,false); +} + + +/** +* This function displays the firstname and lastname of the user as a link to the user tool. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function display_user_link($user_id, $name, $origin='') +{ + if ($user_id<>0) + { + return ''.$name.''; + } + else + { + return $name.' ('.get_lang('Anonymous').')'; + } +} + +/** +* This function displays the user image from the profile, with a link to the user's details. +* @param int User's database ID +* @param str User's name +* @return string An HTML with the anchor and the image of the user +* @author Julio Montoya +*/ + +function display_user_image($user_id,$name, $origin='') +{ + $link=''; + $attrb=array(); + + if ($user_id<>0) + { + $image_path = UserManager::get_user_picture_path_by_id($user_id,'web',false, true); + $image_repository = $image_path['dir']; + $existing_image = $image_path['file']; + return $link.''.$name.''; + } + else + { + return $link.''.$name.''; + } + +} + + +/** +* The thread view counter gets increased every time someone looks at the thread +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function increase_thread_view($thread_id) +{ + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $sql="UPDATE $table_threads SET thread_views=thread_views+1 WHERE thread_id='".Database::escape_string($thread_id)."'"; // this needs to be cleaned first + $result=api_sql_query($sql, __LINE__, __FILE__); +} + +/** +* The relies counter gets increased every time somebody replies to the thread +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function update_thread($thread_id, $last_post_id,$post_date) +{ + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + + $sql="UPDATE $table_threads SET thread_replies=thread_replies+1, + thread_last_post='".Database::escape_string($last_post_id)."', + thread_date='".Database::escape_string($post_date)."' WHERE thread_id='".Database::escape_string($thread_id)."'"; // this needs to be cleaned first + $result=api_sql_query($sql, __LINE__, __FILE__); +} + + + +/** +* This function is called when the user is not allowed in this forum/thread/... +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function forum_not_allowed_here() +{ + Display :: display_error_message(get_lang('NotAllowedHere')); + Display :: display_footer(); + exit; +} + +/** +* This function is used to find all the information about what's new in the forum tool +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_whats_new() +{ + global $_user; + global $_course; + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + + // note this has later to be replaced by the tool constant. But temporarily bb_forum is used since this is the only thing that is in the tracking currently. + //$tool=TOOL_FORUM; + $tool=TOOL_FORUM; // + // to do: remove this. For testing purposes only + //session_unregister('last_forum_access'); + //session_unregister('whatsnew_post_info'); + + if (!$_SESSION['last_forum_access']) + { + $tracking_last_tool_access=Database::get_statistic_table(TABLE_STATISTIC_TRACK_E_LASTACCESS); + $sql="SELECT * FROM ".$tracking_last_tool_access." WHERE access_user_id='".Database::escape_string($_user['user_id'])."' AND access_cours_code='".Database::escape_string($_course['sysCode'])."' AND access_tool='".Database::escape_string($tool)."'"; + $result=api_sql_query($sql,__FILE__,__LINE__); + $row=Database::fetch_array($result); + $_SESSION['last_forum_access']=$row['access_date']; + } + + if (!$_SESSION['whatsnew_post_info']) + { + if ($_SESSION['last_forum_access']<>'') + { + $whatsnew_post_info = array(); + $sql="SELECT * FROM".$table_posts."WHERE post_date>'".Database::escape_string($_SESSION['last_forum_access'])."'"; // note: check the performance of this query. + $result=api_sql_query($sql,__FILE__,__LINE__); + while ($row=Database::fetch_array($result)) + { + $whatsnew_post_info[$row['forum_id']][$row['thread_id']][$row['post_id']]=$row['post_date']; + } + $_SESSION['whatsnew_post_info']=$whatsnew_post_info; + } + } +} + +/** +* With this function we find the number of posts and topics in a given forum. +* +* @param +* @return +* +* @todo consider to call this function only once and let it return an array where the key is the forum id and the value is an array with number_of_topics and number of post +* as key of this array and the value as a value. This could reduce the number of queries needed (especially when there are more forums) +* @todo consider merging both in one query. +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +* +* @deprecated the counting mechanism is now inside the function get_forums +*/ +function get_post_topics_of_forum($forum_id) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); + + $sql="SELECT count(*) as number_of_posts FROM $table_posts WHERE forum_id='".$forum_id."'"; + if (api_is_allowed_to_edit(false,true)) + { + $sql="SELECT count(*) as number_of_posts + FROM $table_posts posts, $table_threads threads, $table_item_property item_property + WHERE posts.forum_id='".Database::escape_string($forum_id)."' + AND posts.thread_id=threads.thread_id + AND item_property.ref=threads.thread_id + AND item_property.visibility<>2 + AND item_property.tool='".TOOL_FORUM_THREAD."' + "; + } + else + { + $sql="SELECT count(*) as number_of_posts + FROM $table_posts posts, $table_threads threads, $table_item_property item_property + WHERE posts.forum_id='".Database::escape_string($forum_id)."' + AND posts.thread_id=threads.thread_id + AND item_property.ref=threads.thread_id + AND item_property.visibility=1 + AND posts.visible=1 + AND item_property.tool='".TOOL_FORUM_THREAD."' + "; + } + $result=api_sql_query($sql, __FILE__, __LINE__); + $row=Database::fetch_array($result); + $number_of_posts=$row['number_of_posts']; + + // we could loop through the result array and count the number of different group_ids but I have chosen to use a second sql statement + if (api_is_allowed_to_edit(false,true)) + { + $sql="SELECT count(*) as number_of_topics + FROM $table_threads threads, $table_item_property item_property + WHERE threads.forum_id='".Database::escape_string($forum_id)."' + AND item_property.ref=threads.thread_id + AND item_property.visibility<>2 + AND item_property.tool='".TOOL_FORUM_THREAD."' + "; + } + else + { + $sql="SELECT count(*) as number_of_topics + FROM $table_threads threads, $table_item_property item_property + WHERE threads.forum_id='".Database::escape_string($forum_id)."' + AND item_property.ref=threads.thread_id + AND item_property.visibility=1 + AND item_property.tool='".TOOL_FORUM_THREAD."' + "; + } + $result=api_sql_query($sql, __FILE__, __LINE__); + $row=Database::fetch_array($result); + $number_of_topics=$row['number_of_topics']; + if ($number_of_topics=='') + { + $number_of_topics=0; // due to the nature of the group by this can result in an empty string. + } + + $return=array('number_of_topics'=>$number_of_topics, 'number_of_posts'=>$number_of_posts); + return $return; +} +/** +* This function approves a post = change +* +* @param $post_id the id of the post that will be deleted +* @param $action make the post visible or invisible +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function approve_post($post_id, $action) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + + if ($action=='invisible') + { + $visibility_value=0; + } + if ($action=='visible') + { + $visibility_value=1; + handle_mail_cue('post',$post_id); + } + + $sql="UPDATE $table_posts SET visible='".Database::escape_string($visibility_value)."' WHERE post_id='".Database::escape_string($post_id)."'"; + $return=api_sql_query($sql, __FILE__, __LINE__); + if ($return) + { + return 'PostVisibilityChanged'; + } +} + + +/** +* This function retrieves all the unapproved messages for a given forum +* This is needed to display the icon that there are unapproved messages in that thread (only the courseadmin can see this) +* +* @param $forum_id the forum where we want to know the unapproved messages of +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function get_unaproved_messages($forum_id) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + + $return_array=array(); + + $sql="SELECT DISTINCT thread_id FROM $table_posts WHERE forum_id='".Database::escape_string($forum_id)."' AND visible='0'"; + $result=api_sql_query($sql, __FILE__, __LINE__); + while($row=Database::fetch_array($result)) + { + $return_array[]=$row['thread_id']; + } + return $return_array; +} + + +/** +* This function sends the notification mails to everybody who stated that they wanted to be informed when a new post +* was added to a given thread. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function send_notification_mails($thread_id, $reply_info) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + $table_mailcue = Database :: get_course_table(TABLE_FORUM_MAIL_QUEUE); + + // First we need to check if + // 1. the forum category is visible + // 2. the forum is visible + // 3. the thread is visible + // 4. the reply is visible (=when there is + $current_thread=get_thread_information($thread_id); + $current_forum=get_forum_information($current_thread['forum_id']); + $current_forum_category=get_forumcategory_information($current_forum['forum_category']); + if($current_thread['visibility']=='1' AND $current_forum['visibility']=='1' AND $current_forum_category['visibility']=='1' AND $current_forum['approval_direct_post']!='1') + { + $send_mails=true; + } + else + { + $send_mails=false; + } + + // the forum category, the forum, the thread and the reply are visible to the user + if ($send_mails==true) + { + send_notifications($current_thread['forum_id'],$thread_id); + } + else + { + $table_notification = Database::get_course_table('forum_notification'); + $sql = "SELECT * FROM $table_notification WHERE forum_id = '".Database::escape_string($current_forum['forum_id'])."' OR thread_id = '".Database::escape_string($thread_id)."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + while ($row=Database::fetch_array($result)) + { + $sql_mailcue="INSERT INTO $table_mailcue (thread_id, post_id) VALUES ('".Database::escape_string($thread_id)."', '".Database::escape_string($reply_info['new_post_id'])."')"; + $result_mailcue=api_sql_query($sql_mailcue, __LINE__, __FILE__); + } + } +} + +/** +* This function is called whenever something is made visible because there might be new posts and the user might have indicated that (s)he wanted +* to be informed about the new posts by mail. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function handle_mail_cue($content, $id) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + $table_mailcue = Database :: get_course_table(TABLE_FORUM_MAIL_QUEUE); + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + + // if the post is made visible we only have to send mails to the people who indicated that they wanted to be informed for that thread. + if ($content=='post') + { + // getting the information about the post (need the thread_id) + $post_info=get_post_information($id); + + // sending the mail to all the users that wanted to be informed for replies on this thread. + $sql="SELECT users.firstname, users.lastname, users.user_id, users.email FROM $table_mailcue mailcue, $table_posts posts, $table_users users + WHERE posts.thread_id='".Database::escape_string($post_info['thread_id'])."' + AND posts.post_notification='1' + AND mailcue.thread_id='".Database::escape_string($post_info['thread_id'])."' + AND users.user_id=posts.poster_id + GROUP BY users.email"; + $result=api_sql_query($sql, __LINE__, __FILE__); + while ($row=Database::fetch_array($result)) + { + send_mail($row, get_thread_information($post_info['thread_id'])); + } - if ($values['post_notification'] == 1) + // deleting the relevant entries from the mailcue + $sql_delete_mailcue="DELETE FROM $table_mailcue WHERE post_id='".Database::escape_string($id)."' AND thread_id='".Database::escape_string($post_info['thread_id'])."'"; + //$result=api_sql_query($sql_delete_mailcue, __LINE__, __FILE__); + } + elseif ($content=='thread') + { + // sending the mail to all the users that wanted to be informed for replies on this thread. + $sql="SELECT users.firstname, users.lastname, users.user_id, users.email FROM $table_mailcue mailcue, $table_posts posts, $table_users users + WHERE posts.thread_id='".Database::escape_string($id)."' + AND posts.post_notification='1' + AND mailcue.thread_id='".Database::escape_string($id)."' + AND users.user_id=posts.poster_id + GROUP BY users.email"; + $result=api_sql_query($sql, __LINE__, __FILE__); + while ($row=Database::fetch_array($result)) { - set_notification('thread',$last_thread_id, true); - } - - send_notification_mails($last_thread_id,$reply_info); - session_unregister('formelements'); - session_unregister('origin'); - session_unregister('breadcrumbs'); - session_unregister('addedresource'); - session_unregister('addedresourceid'); - - Display :: display_confirmation_message($message,false); - } - else - { - Display::display_error_message(get_lang('UplNoFileUploaded')); - } -} -/** -* This function displays the form that is used to add a post. This can be a new thread or a reply. -* @param $action is the parameter that determines if we are -* 1. newthread: adding a new thread (both empty) => No I-frame -* 2. replythread: Replying to a thread ($action = replythread) => I-frame with the complete thread (if enabled) -* 3. replymessage: Replying to a message ($action =replymessage) => I-frame with the complete thread (if enabled) (I first thought to put and I-frame with the message only) -* 4. quote: Quoting a message ($action= quotemessage) => I-frame with the complete thread (if enabled). The message will be in the reply. (I first thought not to put an I-frame here) -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function show_add_post_form($action='', $id='', $form_values='') -{ - global $forum_setting; - global $current_forum; - global $_user; - global $origin; - global $charset; - - // initiate the object - $form = new FormValidator('thread', 'post', api_get_self().'?forum='.Security::remove_XSS($_GET['forum']).'&thread='.Security::remove_XSS($_GET['thread']).'&post='.Security::remove_XSS($_GET['post']).'&action='.Security::remove_XSS($_GET['action']).'&origin='.$origin); - $form->setConstants(array('forum' => '5')); - - // settting the form elements - $form->addElement('hidden', 'forum_id', strval(intval($_GET['forum']))); - $form->addElement('hidden', 'thread_id', strval(intval($_GET['thread']))); - - // if anonymous posts are allowed we also display a form to allow the user to put his name or username in - if ($current_forum['allow_anonymous']==1 AND !isset($_user['user_id'])) - { - $form->addElement('text', 'poster_name', get_lang('Name')); - } - - $form->addElement('text', 'post_title', get_lang('Title'),'class="input_titles"'); - $form->addElement('html_editor', 'post_text', get_lang('Text')); - - if ($forum_setting['allow_post_notificiation'] AND isset($_user['user_id'])) - { - $form->addElement('checkbox', 'post_notification', '', get_lang('NotifyByEmail').' ('.$_user['mail'].')'); - } - - if ($forum_setting['allow_sticky'] AND api_is_allowed_to_edit() AND $action=='newthread') - { - $form->addElement('checkbox', 'thread_sticky', '', get_lang('StickyPost')); - } - - if ($current_forum['allow_attachments']=='1' OR api_is_allowed_to_edit()) - { - //$form->add_resource_button(); - $values = $form->exportValues(); - } - - // user upload - $form->addElement('html','
'.get_lang('AddAnAttachment').'


'); - $form->addElement('file','user_upload',ucwords(get_lang('FileName')),''); - $form->addElement('textarea','file_comment',get_lang('FileComment'),array ('rows' => 4, 'cols' => 34)); - - $userid =api_get_user_id(); - $info =api_get_user_info($userid); - $courseid=api_get_course_id(); - - if($info['status']!='5' && $info['status']!='6' && $_GET['action']!="replythread"&&(!$_GET['cidReq']) && !$_GET['forum']) - { - // thread qualify - $form->addElement('static','Group', '
'.get_lang('QualifyThread').''); - $form->addElement('checkbox', 'thread_qualify_gradebook', '', get_lang('QualifyThreadGradebook')); - $form->addElement('html','
'); - $form->addElement('text', 'calification_notebook_title', get_lang('TitleColumnGradebook')); - $form->addElement('text', 'numeric_calification', get_lang('QualifyNumeric'),'Style="width:40px"'); - $form->addElement('html','
'); - } - - $form->addElement('submit', 'SubmitPost', get_lang('OK')); - $form->add_real_progress_bar('DocumentUpload','user_upload'); - - if (!empty($form_values)) - { - $defaults['post_title']=prepare4display(Security::remove_XSS($form_values['post_title'])); - $defaults['post_text']=prepare4display(Security::remove_XSS($form_values['post_text'])); - $defaults['post_notification']=Security::remove_XSS($form_values['post_notification']); - $defaults['thread_sticky']=Security::remove_XSS($form_values['thread_sticky']); - } - - // if we are quoting a message we have to retrieve the information of the post we are quoting so that - // we can add this as default to the textarea - if (($action=='quote' OR $action=='replymessage') and isset($_GET['post'])) - { - // we also need to put the parent_id of the post in a hidden form when we are quoting or replying to a message (<> reply to a thread !!!) - $form->addElement('hidden', 'post_parent_id', strval(intval($_GET['post']))); // note this has to be cleaned first - - // if we are replying or are quoting then we display a default title. - $values=get_post_information($_GET['post']); // note: this has to be cleaned first - $defaults['post_title']=get_lang('ReplyShort').html_entity_decode($values['post_title'],ENT_QUOTES,$charset); - // When we are quoting a message then we have to put that message into the wysiwyg editor. - // note: the style has to be hardcoded here because using class="quote" didn't work - if($action=='quote') - { - $defaults['post_text']='
 
'.get_lang('Quoting').' '.$values['firstname'].' '.$values['lastname'].':
'.prepare4display($values['post_text']).'
 
 
'; - } - } - $form->setDefaults($defaults); - - // the course admin can make a thread sticky (=appears with special icon and always on top) - $form->addRule('post_title', '
'.get_lang('ThisFieldIsRequired'), 'required'); - if ($current_forum['allow_anonymous']==1 AND !isset($_user['user_id'])) - { - $form->addRule('poster_name', '
'.get_lang('ThisFieldIsRequired'), 'required'); - } - - // The validation or display - if( $form->validate() ) - { - $values = $form->exportValues(); - return $values; - } - else - { - $form->display(); - echo '
'; - if ($forum_setting['show_thread_iframe_on_reply'] and $action<>'newthread') - { - echo ""; - } - } -} -/** - * this function stores the qualified thread -* @param integer contains the information of current user_id -* @param integer contains the information of current thread_id -* @param integer contains the information of current thread_qualify -* @param integer contains the information of current qualify_user_id -* @param date contains the information of current qualify_time -* @param integer contains the information of current session_id -* @return integer contains the information of current thread_qualify; -* @author Isaac Flores , U.N.A.S University -* @version October 2008, dokeos 1.8.6 - **/ -function store_theme_qualify($user_id,$thread_id,$thread_qualify=0,$qualify_user_id=0,$qualify_time,$session_id=null) -{ - $table_threads_qualify = Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY,''); - $table_threads = Database::get_course_table(TABLE_FORUM_THREAD,''); - - if ($user_id==strval(intval($user_id)) && $thread_id==strval(intval($thread_id)) && $thread_qualify==strval(intval($thread_qualify))) { - - //testing - - $sql_string="SELECT thread_qualify_max FROM ". $table_threads ." WHERE thread_id=".Database::escape_string($thread_id).""; - $res_string=api_sql_query($sql_string,__FILE__,__LINE__); - $row_string=Database::fetch_array($res_string); - - if($thread_qualify<=$row_string[0]){ - - $sql1="SELECT COUNT(*) FROM ".$table_threads_qualify." WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; - $res1=api_sql_query($sql1); - $row=Database::fetch_array($res1); - - if($row[0]==0){ - $sql="INSERT INTO $table_threads_qualify (user_id," . - "thread_id,qualify,qualify_user_id,qualify_time,session_id)" . - "VALUES('".Database::escape_string($user_id)."','".Database::escape_string($thread_id)."','".Database::escape_string($thread_qualify)."'," . - "'".Database::escape_string($qualify_user_id)."','".Database::escape_string($qualify_time)."','".Database::escape_string($session_id)."')"; - $res=api_sql_query($sql,__FILE__,__LINE__); - - return $res; - }else{ - - $sql1="SELECT qualify FROM ".$table_threads_qualify." WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; - $rs=api_sql_query($sql1,__FILE__,__LINE__); - $row=Database::fetch_array($rs); - $row[1]="update"; - return $row; - - } - - }else{ - return false; - } - - } - -} -/** -* This function show qualify. -* @param string contains the information of option to run -* @param string contains the information the current course id -* @param integer contains the information the current forum id -* @param integer contains the information the current user id -* @param integer contains the information the current thread id -* @return integer qualify -* @example $option=1 obtained the qualification of the current thread -* @author Isaac Flores , U.N.A.S University -* @version October 2008, dokeos 1.8.6 -*/ - function show_qualify($option,$couser_id,$forum_id,$user_id,$thread_id){ - - $table_threads_qualify = Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY,''); - $table_threads = Database::get_course_table(TABLE_FORUM_THREAD,''); - - if($user_id==strval(intval($user_id)) && $thread_id==strval(intval($thread_id)) && $option==1) - { - $sql="SELECT qualify FROM ".$table_threads_qualify." WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; - $rs=api_sql_query($sql,__FILE__,__LINE__); - $row=Database::fetch_array($rs); - return $row[0]; - } - - if($user_id==strval(intval($user_id)) && $option==2){ - - $sql="SELECT thread_qualify_Max FROM ".$table_threads." WHERE thread_id=".Database::escape_string($thread_id).""; - $rs=api_sql_query($sql,__FILE__,__LINE__); - $row=Database::fetch_array($rs); - return $row[0]; - } - - } - -/** -* This function returns the qualification history -* @param integer contains the id of current user_id -* @param integer contains the id of current thread_id -* @param string contains the option id -* @return array Array of type ([user_id=>a,thread_id=>b,qualify=>c,qualify_user_id=>d,qualify_time=>e,session_id=>f],[]) -* @author Christian Fasanando , -* @version October 2008, dokeos 1.8.6 -*/ -function get_historical_qualify($user_id, $thread_id, $opt) { - - $table_threads_qualify_log = Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY_LOG,''); - $opt = Database::escape_string($opt); - if($opt=='false') - { - $sql="SELECT user_id,thread_id,qualify,qualify_user_id,qualify_time,session_id FROM ".$table_threads_qualify_log." WHERE thread_id='".Database::escape_string($thread_id)."' and user_id='".Database::escape_string($user_id)."' ORDER BY qualify_time"; - } - else - { - $sql="SELECT user_id,thread_id,qualify,qualify_user_id,qualify_time,session_id FROM ".$table_threads_qualify_log." WHERE thread_id='".Database::escape_string($thread_id)."' and user_id='".Database::escape_string($user_id)."' ORDER BY qualify_time DESC"; - } - $rs=api_sql_query($sql,__FILE__,__LINE__); - $results = array(); - if (Database::num_rows($rs)>0) { - while ($row = Database::fetch_array($rs)) { - $results[] = $row; - } - } - return $results; -} - -/** -* -* This function store qualify historical. -* @param integer contains the information of option to run -* @param integer contains the information the current course id -* @param integer contains the information the current forum id -* @param integer contains the information the current user id -* @param integer contains the information the current thread id -* @param integer contains the information the current qualify -* @return -* @example $option=1 obtained the qualification of the current thread -* @author Isaac Flores , U.N.A.S University -* @version October 2008, dokeos 1.8.6 -*/ -function store_qualify_historical($option,$couser_id,$forum_id,$user_id,$thread_id,$current_qualify,$qualify_user_id){ - - $table_threads_qualify = Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY,''); - $table_threads =Database::get_course_table(TABLE_FORUM_THREAD,''); - $table_threads_qualify_log=Database::get_course_table(TABLE_FORUM_THREAD_QUALIFY_LOG,''); - $current_date=date('Y-m-d H:i:s'); - - - if($user_id==strval(intval($user_id)) && $thread_id==strval(intval($thread_id)) && $option==1){ - //extract information of thread_qualify - - $sql="SELECT qualify,qualify_time FROM ".$table_threads_qualify." WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; - $rs=api_sql_query($sql,__FILE__,__LINE__); - $row=Database::fetch_array($rs); - - //insert thread_historical - $sql1="INSERT INTO $table_threads_qualify_log (user_id," . - "thread_id,qualify,qualify_user_id,qualify_time,session_id)" . - "VALUES('".Database::escape_string($user_id)."','".Database::escape_string($thread_id)."','".Database::escape_string($row[0])."'," . - "'".Database::escape_string($qualify_user_id)."','".Database::escape_string($row[1])."','')"; - api_sql_query($sql1,__FILE__,__LINE__); - - //update - $sql2="UPDATE ".$table_threads_qualify." SET qualify=".Database::escape_string($current_qualify).",qualify_time='".Database::escape_string($current_date)."' WHERE user_id=".Database::escape_string($user_id)." and thread_id=".Database::escape_string($thread_id).""; - api_sql_query($sql2,__FILE__,__LINE__); - } -} - -/** -* This function stores a reply in the forum_post table. -* It also updates the forum_threads table (thread_replies +1 , thread_last_post, thread_date) -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function store_reply($values) -{ - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - global $forum_table_attachment; - global $_user; - global $_course; - global $current_forum; - global $origin; - - $post_date=date('Y-m-d H:i:s'); - if ($current_forum['approval_direct_post']=='1' AND !api_is_allowed_to_edit()) - { - $visible=0; // the post is not approved yet. - } - else - { - $visible=1; - } - - $upload_ok=1; - $has_attachment=false; - if(!empty($_FILES['user_upload']['name'])) - { - $upload_ok = process_uploaded_file($_FILES['user_upload']); - $has_attachment=true; - } - - if($upload_ok) - { - // We first store an entry in the forum_post table - $sql="INSERT INTO $table_posts (post_title, post_text, thread_id, forum_id, poster_id, post_date, post_notification, post_parent_id, visible) - VALUES ('".Database::escape_string($values['post_title'])."', - '".Database::escape_string($values['post_text'])."', - '".Database::escape_string($values['thread_id'])."', - '".Database::escape_string($values['forum_id'])."', - '".Database::escape_string($_user['user_id'])."', - '".Database::escape_string($post_date)."', - '".Database::escape_string($values['post_notification'])."', - '".Database::escape_string($values['post_parent_id'])."', - '".Database::escape_string($visible)."')"; - $result=api_sql_query($sql, __LINE__, __FILE__); - $new_post_id=Database::insert_id(); - $values['new_post_id']=$new_post_id; - - $message=get_lang('ReplyAdded'); - - if ($has_attachment) - { - $courseDir = $_course['path'].'/upload/forum'; - $sys_course_path = api_get_path(SYS_COURSE_PATH); - $updir = $sys_course_path.$courseDir; - - // Try to add an extension to the file if it hasn't one - $new_file_name = add_ext_on_mime(stripslashes($_FILES['user_upload']['name']), $_FILES['user_upload']['type']); - - // user's file name - $file_name =$_FILES['user_upload']['name']; - - if (!filter_extension($new_file_name)) - { - Display :: display_error_message(get_lang('UplUnableToSaveFileFilteredExtension')); - } - else - { - $new_file_name = uniqid(''); - $new_path=$updir.'/'.$new_file_name; - $result= @move_uploaded_file($_FILES['user_upload']['tmp_name'], $new_path); - $comment=$values['file_comment']; - - // Storing the attachments if any - if ($result) - { - $sql='INSERT INTO '.$forum_table_attachment.'(filename,comment, path, post_id,size) '. - "VALUES ( '".Database::escape_string($file_name)."', '".Database::escape_string($comment)."', '".Database::escape_string($new_file_name)."' , '".$new_post_id."', '".$_FILES['user_upload']['size']."' )"; - $result=api_sql_query($sql, __LINE__, __FILE__); - $message.=' / '.get_lang('FileUploadSucces'); - $last_id=Database::insert_id(); - api_item_property_update($_course, TOOL_FORUM_ATTACH, $last_id ,'ForumAttachmentAdded', api_get_user_id()); - } - } - } - - // update the thread - update_thread($values['thread_id'], $new_post_id,$post_date); - - // update the forum - api_item_property_update($_course, TOOL_FORUM, $values['forum_id'],"NewMessageInForum", api_get_user_id()); - - if ($current_forum['approval_direct_post']=='1' AND !api_is_allowed_to_edit()) - { - $message.='
'.get_lang('MessageHasToBeApproved').'
'; - } - - $message.='
'.get_lang('ReturnTo').' '.get_lang('Forum').'
'; - $message.=get_lang('ReturnTo').' '.get_lang('Message').''; - - // setting the notification correctly - if ($values['post_notification'] == 1) + send_mail($row, get_thread_information($id)); + } + + // deleting the relevant entries from the mailcue + $sql_delete_mailcue="DELETE FROM $table_mailcue WHERE thread_id='".Database::escape_string($id)."'"; + $result=api_sql_query($sql_delete_mailcue, __LINE__, __FILE__); + } + elseif ($content=='forum') + { + $sql="SELECT * FROM $table_threads WHERE forum_id='".Database::escape_string($id)."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + while ($row=Database::fetch_array($result)) { - set_notification('thread',$values['thread_id'], true); + handle_mail_cue('thread',$row['thread_id']); + } + } + elseif ($content=='forum_category') + { + $sql="SELECT * FROM $table_forums WHERE forum_category ='".Database::escape_string($id)."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + while ($row=Database::fetch_array($result)) + { + handle_mail_cue('forum',$row['forum_id']); + } + } + else + { + return get_lang('Error'); + } +} +/** +* This function sends the mails for the mail notification +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function send_mail($user_info=array(), $thread_information=array()) +{ + global $_course; + global $_user; + + $email_subject = get_lang('NewForumPost')." - ".$_course['official_code']; + + if (isset($thread_information) and is_array($thread_information)) + { + $thread_link= api_get_path('WEB_CODE_PATH').'forum/viewthread.php?'.api_get_cidreq().'&forum='.$thread_information['forum_id'].'&thread='.$thread_information['thread_id']; + } + $email_body= $user_info['firstname']." ".$user_info['lastname']."\n\r"; + $email_body .= '['.$_course['official_code'].'] - ['.$_course['name']."]
\n"; + $email_body .= get_lang('NewForumPost')."\n"; + $email_body .= get_lang('YouWantedToStayInformed')."

\n"; + $email_body .= get_lang('ThreadCanBeFoundHere')." : ".$thread_link."\n"; + + //set the charset and use it for the encoding of the email - small fix, not really clean (should check the content encoding origin first) + //here we use the encoding used for the webpage where the text is encoded (ISO-8859-1 in this case) + if(empty($charset)){$charset='ISO-8859-1';} + + if ($user_info['user_id']<>$_user['user_id']) + { + $newmail = api_mail_html($user_info["lastname"].' '.$user_info["firstname"], $user_info["email"], $email_subject, $email_body, $_SESSION['_user']['lastName'].' '.$_SESSION['_user']['firstName'], $_SESSION['_user']['mail']); + } +} + +/** +* This function displays the form for moving a thread to a different (already existing) forum +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function move_thread_form() +{ + global $origin; + + // initiate the object + $form = new FormValidator('movepost', 'post', api_get_self().'?forum='.Security::remove_XSS($_GET['forum']).'&thread='.Security::remove_XSS($_GET['thread']).'&action='.Security::remove_XSS($_GET['action']).'&origin='.$origin); + // the header for the form + $form->addElement('header', '', get_lang('MoveThread')); + // invisible form: the thread_id + $form->addElement('hidden', 'thread_id', strval(intval($_GET['thread']))); // note: this has to be cleaned first + + // the fora + $forum_categories=get_forum_categories(); + $forums=get_forums(); + + $htmlcontent="\n\n\n\n\n"; + $form->addElement('html',$htmlcontent); + + // The OK button + $form->addElement('submit', 'SubmitForum', get_lang('OK')); + + // The validation or display + if( $form->validate()) + { + $values = $form->exportValues(); + if (isset($_POST['forum'])) + { + store_move_thread($values); + } + + } + else + { + $form->display(); + } +} + +/** +* This function displays the form for moving a post message to a different (already existing) or a new thread. +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function move_post_form() +{ + // initiate the object + $form = new FormValidator('movepost', 'post', api_get_self().'?forum='.Security::remove_XSS($_GET['forum']).'&thread='.Security::remove_XSS($_GET['thread']).'&post='.Security::remove_XSS($_GET['post']).'&action='.Security::remove_XSS($_GET['action']).'&post='.Security::remove_XSS($_GET['post'])); + // the header for the form + $form->addElement('header', '', get_lang('MovePost')); + + // invisible form: the post_id + $form->addElement('hidden', 'post_id', strval(intval($_GET['post']))); // note: this has to be cleaned first + + // dropdown list: Threads of this forum + $threads=get_threads(strval(intval($_GET['forum']))); // note: this has to be cleaned + //my_print_r($threads); + $threads_list[0]=get_lang('ANewThread'); + foreach ($threads as $key=>$value) + { + $threads_list[$value['thread_id']]=$value['thread_title']; + } + $form->addElement('select', 'thread', get_lang('MoveToThread'), $threads_list); + + + // The OK button + $form->addElement('submit', '', get_lang('OK')); + + // setting the rules + $form->addRule('thread', get_lang('ThisFieldIsRequired'), 'required'); + + + // The validation or display + if( $form->validate() ) + { + $values = $form->exportValues(); + store_move_post($values); + } + else + { + $form->display(); + } +} + +/** +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function store_move_post($values) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + global $_course; + + if ($values['thread']=='0') + { + $current_post=get_post_information($values['post_id']); + + // storing a new thread + $sql="INSERT INTO $table_threads (thread_title, forum_id, thread_poster_id, thread_poster_name, thread_last_post, thread_date) + VALUES ( + '".Database::escape_string($current_post['post_title'])."', + '".Database::escape_string($current_post['forum_id'])."', + '".Database::escape_string($current_post['poster_id'])."', + '".Database::escape_string($current_post['poster_name'])."', + '".Database::escape_string($values['post_id'])."', + '".Database::escape_string($current_post['post_date'])."' + )"; + $result=api_sql_query($sql, __LINE__, __FILE__); + $new_thread_id=Database::get_last_insert_id(); + api_item_property_update($_course, TOOL_FORUM_THREAD, $new_thread_id,"visible", $current_post['poster_id']); + + // moving the post to the newly created thread + $sql="UPDATE $table_posts SET thread_id='".Database::escape_string($new_thread_id)."', post_parent_id='0' WHERE post_id='".Database::escape_string($values['post_id'])."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + + // resetting the parent_id of the thread to 0 for all those who had this moved post as parent + $sql="UPDATE $table_posts SET post_parent_id='0' WHERE post_parent_id='".Database::escape_string($values['post_id'])."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + + // updating updating the number of threads in the forum + $sql="UPDATE $table_forums SET forum_threads=forum_threads+1 WHERE forum_id='".Database::escape_string($current_post['forum_id'])."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + + // resetting the last post of the old thread and decreasing the number of replies and the thread + $sql="SELECT * FROM $table_posts WHERE thread_id='".Database::escape_string($current_post['thread_id'])."' ORDER BY post_id DESC"; + $result=api_sql_query($sql, __LINE__, __FILE__); + $row=Database::fetch_array($result); + $sql="UPDATE $table_threads SET thread_last_post='".$row['post_id']."', thread_replies=thread_replies-1 WHERE thread_id='".Database::escape_string($current_post['thread_id'])."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); - send_notification_mails($values['thread_id'], $values); - - session_unregister('formelements'); - session_unregister('origin'); - session_unregister('breadcrumbs'); - session_unregister('addedresource'); - session_unregister('addedresourceid'); - - Display :: display_confirmation_message($message,false); - - } - else - { - Display::display_error_message(get_lang('UplNoFileUploaded')." ". get_lang('UplSelectFileFirst')); - } - -} - - -/** -* This function displays the form that is used to edit a post. This can be a new thread or a reply. -* @param array contains all the information about the current post -* @param array contains all the information about the current thread -* @param array contains all info about the current forum (to check if attachments are allowed) -* @param array contains the default values to fill the form -* @return void -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function show_edit_post_form($current_post, $current_thread, $current_forum, $form_values='') -{ - global $forum_setting; - global $_user; - - // initiate the object - $form = new FormValidator('edit_post', 'post', api_get_self().'?forum='.Security::remove_XSS($_GET['forum']).'&thread='.Security::remove_XSS($_GET['thread']).'&post='.Security::remove_XSS($_GET['post'])); - - // settting the form elements - $form->addElement('hidden', 'post_id', $current_post['post_id']); - $form->addElement('hidden', 'thread_id', $current_thread['thread_id']); - if ($current_post['post_parent_id']==0) - { - $form->addElement('hidden', 'is_first_post_of_thread', '1'); - } - $form->addElement('text', 'post_title', get_lang('Title'),'class="input_titles"'); - $form->addElement('html_editor', 'post_text', get_lang('Text')); - - if(!$_GET['edit']){ - $form->addElement('static','Group', '
'.get_lang('AlterQualifyThread').''); - $form->addElement('checkbox', 'thread_qualify_gradebook', '', get_lang('QualifyThreadGradebook')); - $defaults['thread_qualify_gradebook']=is_resource_in_course_gradebook(api_get_course_id(),5,$_GET['thread'],api_get_session_id()); - //$form->addElement('check','check_list', '
'.get_lang('El tema es calificable')); - $form->addElement('text', 'calification_notebook_title', get_lang('TitleColumnGradebook'),'value="'.$current_thread[12].'"'); - $form->addElement('text', 'numeric_calification', get_lang('QualifyNumeric'),'value="'.$current_thread[13].'" Style="width:40px"'); - //add gradebook - } - - if ($forum_setting['allow_post_notificiation']) - { - $form->addElement('checkbox', 'post_notification', '', get_lang('NotifyByEmail').' ('.$current_post['email'].')'); - } - if ($forum_setting['allow_sticky'] and api_is_allowed_to_edit() and $current_post['post_parent_id']==0) // the sticky checkbox only appears when it is the first post of a thread - { - $form->addElement('checkbox', 'thread_sticky', '', get_lang('StickyPost')); - if ($current_thread['thread_sticky']==1) - { - $defaults['thread_sticky']=true; - } - } - if ($current_forum['allow_attachments']=='1' OR api_is_allowed_to_edit()) - { - if (empty($form_values) AND !$_POST['SubmitPost']) - { - //edit_added_resources('forum_post',$current_post['post_id']); - } - //$form->add_resource_button(); - $values = $form->exportValues(); - } - - $form->addElement('submit', 'SubmitPost', get_lang('OK')); - global $charset; - // setting the default values for the form elements - $defaults['post_title']=prepare4display(html_entity_decode($current_post['post_title'],ENT_QUOTES,$charset)); - $defaults['post_text']=prepare4display($current_post['post_text']); - if ($current_post['post_notification']==1) - { - $defaults['post_notification']=true; - } - - if (!empty($form_values)) - { - $defaults['post_title']=Security::remove_XSS($form_values['post_title']); - $defaults['post_text']=Security::remove_XSS($form_values['post_text']); - $defaults['post_notification']=Security::remove_XSS($form_values['post_notification']); - $defaults['thread_sticky']=Security::remove_XSS($form_values['thread_sticky']); - } - - $form->setDefaults($defaults); - - // the course admin can make a thread sticky (=appears with special icon and always on top) - - $form->addRule('post_title', '
'.get_lang('ThisFieldIsRequired'), 'required'); - - // The validation or display - if( $form->validate() ) - { - $values = $form->exportValues(); - return $values; - } - else - { - $form->display(); - } -} - -/** -* This function stores the edit of a post in the forum_post table. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function store_edit_post($values) -{ - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - // first we check if the change affects the thread and if so we commit the changes (sticky and post_title=thread_title are relevant) - if (array_key_exists('is_first_post_of_thread',$values) AND $values['is_first_post_of_thread']=='1') - { - $sql="UPDATE $table_threads SET thread_title='".Database::escape_string($values['post_title'])."', - thread_sticky='".Database::escape_string($values['thread_sticky'])."'," . - "thread_title_qualify='".Database::escape_string($values['calification_notebook_title'])."'," . - "thread_qualify_max='".Database::escape_string($values['numeric_calification'])."' - WHERE thread_id='".Database::escape_string($values['thread_id'])."'"; - - api_sql_query($sql,__FILE__, __LINE__); - } - - // update the post_title and the post_text - $sql="UPDATE $table_posts SET post_title='".Database::escape_string($values['post_title'])."', - post_text='".Database::escape_string($values['post_text'])."', - post_notification='".Database::escape_string($values['post_notification'])."' - WHERE post_id='".Database::escape_string($values['post_id'])."'"; - //error_log($sql); - api_sql_query($sql,__FILE__, __LINE__); - - if (api_is_course_admin()==true) { - $ccode = api_get_course_id(); - $sid = api_get_session_id(); - //var_dump($values); - $link_id = is_resource_in_course_gradebook($ccode,5,$values['thread_id'],$sid); - if ($values['thread_qualify_gradebook']!=1) { - if ($link_id !== false) { - remove_resource_from_course_gradebook($link_id); - } - } else { - if ($link_id === false) { - add_resource_to_course_gradebook($ccode,5,$values['thread_id'],Database::escape_string($values['calification_notebook_title']),0,$values['numeric_calification'],null,null,0,$sid); - } - } - } - // Storing the attachments if any - //update_added_resources('forum_post',$values['post_id']); - - $message=get_lang('EditPostStored').'
'; - $message.=get_lang('ReturnTo').' '.get_lang('Forum').'
'; - $message.=get_lang('ReturnTo').' '.get_lang('Message').''; - - session_unregister('formelements'); - session_unregister('origin'); - session_unregister('breadcrumbs'); - session_unregister('addedresource'); - session_unregister('addedresourceid'); - - Display :: display_confirmation_message($message,false); -} - - -/** -* This function displays the firstname and lastname of the user as a link to the user tool. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function display_user_link($user_id, $name, $origin='') -{ - if ($user_id<>0) - { - return ''.$name.''; - } - else - { - return $name.' ('.get_lang('Anonymous').')'; - } -} - -/** -* This function displays the user image from the profile, with a link to the user's details. -* @param int User's database ID -* @param str User's name -* @return string An HTML with the anchor and the image of the user -* @author Julio Montoya -*/ - -function display_user_image($user_id,$name, $origin='') -{ - $link=''; - $attrb=array(); - - if ($user_id<>0) - { - $image_path = UserManager::get_user_picture_path_by_id($user_id,'web',false, true); - $image_repository = $image_path['dir']; - $existing_image = $image_path['file']; - return $link.''.$name.''; - } - else - { - return $link.''.$name.''; - } - -} - - -/** -* The thread view counter gets increased every time someone looks at the thread -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function increase_thread_view($thread_id) -{ - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $sql="UPDATE $table_threads SET thread_views=thread_views+1 WHERE thread_id='".Database::escape_string($thread_id)."'"; // this needs to be cleaned first - $result=api_sql_query($sql, __LINE__, __FILE__); -} - -/** -* The relies counter gets increased every time somebody replies to the thread -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function update_thread($thread_id, $last_post_id,$post_date) -{ - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - - $sql="UPDATE $table_threads SET thread_replies=thread_replies+1, - thread_last_post='".Database::escape_string($last_post_id)."', - thread_date='".Database::escape_string($post_date)."' WHERE thread_id='".Database::escape_string($thread_id)."'"; // this needs to be cleaned first - $result=api_sql_query($sql, __LINE__, __FILE__); -} - - - -/** -* This function is called when the user is not allowed in this forum/thread/... -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function forum_not_allowed_here() -{ - Display :: display_error_message(get_lang('NotAllowedHere')); - Display :: display_footer(); - exit; -} - -/** -* This function is used to find all the information about what's new in the forum tool -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_whats_new() -{ - global $_user; - global $_course; - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - - // note this has later to be replaced by the tool constant. But temporarily bb_forum is used since this is the only thing that is in the tracking currently. - //$tool=TOOL_FORUM; - $tool=TOOL_FORUM; // - // to do: remove this. For testing purposes only - //session_unregister('last_forum_access'); - //session_unregister('whatsnew_post_info'); - - if (!$_SESSION['last_forum_access']) - { - $tracking_last_tool_access=Database::get_statistic_table(TABLE_STATISTIC_TRACK_E_LASTACCESS); - $sql="SELECT * FROM ".$tracking_last_tool_access." WHERE access_user_id='".Database::escape_string($_user['user_id'])."' AND access_cours_code='".Database::escape_string($_course['sysCode'])."' AND access_tool='".Database::escape_string($tool)."'"; - $result=api_sql_query($sql,__FILE__,__LINE__); - $row=Database::fetch_array($result); - $_SESSION['last_forum_access']=$row['access_date']; - } - - if (!$_SESSION['whatsnew_post_info']) - { - if ($_SESSION['last_forum_access']<>'') - { - $whatsnew_post_info = array(); - $sql="SELECT * FROM".$table_posts."WHERE post_date>'".Database::escape_string($_SESSION['last_forum_access'])."'"; // note: check the performance of this query. - $result=api_sql_query($sql,__FILE__,__LINE__); - while ($row=Database::fetch_array($result)) - { - $whatsnew_post_info[$row['forum_id']][$row['thread_id']][$row['post_id']]=$row['post_date']; - } - $_SESSION['whatsnew_post_info']=$whatsnew_post_info; - } - } -} - -/** -* With this function we find the number of posts and topics in a given forum. -* -* @param -* @return -* -* @todo consider to call this function only once and let it return an array where the key is the forum id and the value is an array with number_of_topics and number of post -* as key of this array and the value as a value. This could reduce the number of queries needed (especially when there are more forums) -* @todo consider merging both in one query. -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -* -* @deprecated the counting mechanism is now inside the function get_forums -*/ -function get_post_topics_of_forum($forum_id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); - - $sql="SELECT count(*) as number_of_posts FROM $table_posts WHERE forum_id='".$forum_id."'"; - if (api_is_allowed_to_edit(false,true)) - { - $sql="SELECT count(*) as number_of_posts - FROM $table_posts posts, $table_threads threads, $table_item_property item_property - WHERE posts.forum_id='".Database::escape_string($forum_id)."' - AND posts.thread_id=threads.thread_id - AND item_property.ref=threads.thread_id - AND item_property.visibility<>2 - AND item_property.tool='".TOOL_FORUM_THREAD."' - "; - } - else - { - $sql="SELECT count(*) as number_of_posts - FROM $table_posts posts, $table_threads threads, $table_item_property item_property - WHERE posts.forum_id='".Database::escape_string($forum_id)."' - AND posts.thread_id=threads.thread_id - AND item_property.ref=threads.thread_id - AND item_property.visibility=1 - AND posts.visible=1 - AND item_property.tool='".TOOL_FORUM_THREAD."' - "; - } - $result=api_sql_query($sql, __FILE__, __LINE__); - $row=Database::fetch_array($result); - $number_of_posts=$row['number_of_posts']; - - // we could loop through the result array and count the number of different group_ids but I have chosen to use a second sql statement - if (api_is_allowed_to_edit(false,true)) - { - $sql="SELECT count(*) as number_of_topics - FROM $table_threads threads, $table_item_property item_property - WHERE threads.forum_id='".Database::escape_string($forum_id)."' - AND item_property.ref=threads.thread_id - AND item_property.visibility<>2 - AND item_property.tool='".TOOL_FORUM_THREAD."' - "; - } - else - { - $sql="SELECT count(*) as number_of_topics - FROM $table_threads threads, $table_item_property item_property - WHERE threads.forum_id='".Database::escape_string($forum_id)."' - AND item_property.ref=threads.thread_id - AND item_property.visibility=1 - AND item_property.tool='".TOOL_FORUM_THREAD."' - "; - } - $result=api_sql_query($sql, __FILE__, __LINE__); - $row=Database::fetch_array($result); - $number_of_topics=$row['number_of_topics']; - if ($number_of_topics=='') - { - $number_of_topics=0; // due to the nature of the group by this can result in an empty string. - } - - $return=array('number_of_topics'=>$number_of_topics, 'number_of_posts'=>$number_of_posts); - return $return; -} -/** -* This function approves a post = change -* -* @param $post_id the id of the post that will be deleted -* @param $action make the post visible or invisible -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function approve_post($post_id, $action) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - - if ($action=='invisible') - { - $visibility_value=0; - } - if ($action=='visible') - { - $visibility_value=1; - handle_mail_cue('post',$post_id); - } - - $sql="UPDATE $table_posts SET visible='".Database::escape_string($visibility_value)."' WHERE post_id='".Database::escape_string($post_id)."'"; - $return=api_sql_query($sql, __FILE__, __LINE__); - if ($return) - { - return 'PostVisibilityChanged'; - } -} - - -/** -* This function retrieves all the unapproved messages for a given forum -* This is needed to display the icon that there are unapproved messages in that thread (only the courseadmin can see this) -* -* @param $forum_id the forum where we want to know the unapproved messages of -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function get_unaproved_messages($forum_id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - - $return_array=array(); - - $sql="SELECT DISTINCT thread_id FROM $table_posts WHERE forum_id='".Database::escape_string($forum_id)."' AND visible='0'"; - $result=api_sql_query($sql, __FILE__, __LINE__); - while($row=Database::fetch_array($result)) - { - $return_array[]=$row['thread_id']; - } - return $return_array; -} - - -/** -* This function sends the notification mails to everybody who stated that they wanted to be informed when a new post -* was added to a given thread. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function send_notification_mails($thread_id, $reply_info) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - $table_mailcue = Database :: get_course_table(TABLE_FORUM_MAIL_QUEUE); - - // First we need to check if - // 1. the forum category is visible - // 2. the forum is visible - // 3. the thread is visible - // 4. the reply is visible (=when there is - $current_thread=get_thread_information($thread_id); - $current_forum=get_forum_information($current_thread['forum_id']); - $current_forum_category=get_forumcategory_information($current_forum['forum_category']); - if($current_thread['visibility']=='1' AND $current_forum['visibility']=='1' AND $current_forum_category['visibility']=='1' AND $current_forum['approval_direct_post']!='1') - { - $send_mails=true; - } - else - { - $send_mails=false; - } - - // the forum category, the forum, the thread and the reply are visible to the user - if ($send_mails==true) - { - send_notifications($current_thread['forum_id'],$thread_id); - } - else + } + else { - $table_notification = Database::get_course_table('forum_notification'); - $sql = "SELECT * FROM $table_notification WHERE forum_id = '".Database::escape_string($current_forum['forum_id'])."' OR thread_id = '".Database::escape_string($thread_id)."'"; + // moving to the chosen thread + $sql="UPDATE $table_posts SET thread_id='".Database::escape_string($_POST['thread'])."', post_parent_id='0' WHERE post_id='".Database::escape_string($values['post_id'])."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + + // resetting the parent_id of the thread to 0 for all those who had this moved post as parent + $sql="UPDATE $table_posts SET post_parent_id='0' WHERE post_parent_id='".Database::escape_string($values['post_id'])."'"; $result=api_sql_query($sql, __LINE__, __FILE__); - while ($row=Database::fetch_array($result)) - { - $sql_mailcue="INSERT INTO $table_mailcue (thread_id, post_id) VALUES ('".Database::escape_string($thread_id)."', '".Database::escape_string($reply_info['new_post_id'])."')"; - $result_mailcue=api_sql_query($sql_mailcue, __LINE__, __FILE__); - } - } -} - -/** -* This function is called whenever something is made visible because there might be new posts and the user might have indicated that (s)he wanted -* to be informed about the new posts by mail. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function handle_mail_cue($content, $id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - $table_mailcue = Database :: get_course_table(TABLE_FORUM_MAIL_QUEUE); - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - - // if the post is made visible we only have to send mails to the people who indicated that they wanted to be informed for that thread. - if ($content=='post') - { - // getting the information about the post (need the thread_id) - $post_info=get_post_information($id); - - // sending the mail to all the users that wanted to be informed for replies on this thread. - $sql="SELECT users.firstname, users.lastname, users.user_id, users.email FROM $table_mailcue mailcue, $table_posts posts, $table_users users - WHERE posts.thread_id='".Database::escape_string($post_info['thread_id'])."' - AND posts.post_notification='1' - AND mailcue.thread_id='".Database::escape_string($post_info['thread_id'])."' - AND users.user_id=posts.poster_id - GROUP BY users.email"; - $result=api_sql_query($sql, __LINE__, __FILE__); - while ($row=Database::fetch_array($result)) - { - send_mail($row, get_thread_information($post_info['thread_id'])); - } - - // deleting the relevant entries from the mailcue - $sql_delete_mailcue="DELETE FROM $table_mailcue WHERE post_id='".Database::escape_string($id)."' AND thread_id='".Database::escape_string($post_info['thread_id'])."'"; - //$result=api_sql_query($sql_delete_mailcue, __LINE__, __FILE__); - } - elseif ($content=='thread') - { - // sending the mail to all the users that wanted to be informed for replies on this thread. - $sql="SELECT users.firstname, users.lastname, users.user_id, users.email FROM $table_mailcue mailcue, $table_posts posts, $table_users users - WHERE posts.thread_id='".Database::escape_string($id)."' - AND posts.post_notification='1' - AND mailcue.thread_id='".Database::escape_string($id)."' - AND users.user_id=posts.poster_id - GROUP BY users.email"; - $result=api_sql_query($sql, __LINE__, __FILE__); - while ($row=Database::fetch_array($result)) - { - send_mail($row, get_thread_information($id)); - } - - // deleting the relevant entries from the mailcue - $sql_delete_mailcue="DELETE FROM $table_mailcue WHERE thread_id='".Database::escape_string($id)."'"; - $result=api_sql_query($sql_delete_mailcue, __LINE__, __FILE__); - } - elseif ($content=='forum') - { - $sql="SELECT * FROM $table_threads WHERE forum_id='".Database::escape_string($id)."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - while ($row=Database::fetch_array($result)) - { - handle_mail_cue('thread',$row['thread_id']); - } - } - elseif ($content=='forum_category') - { - $sql="SELECT * FROM $table_forums WHERE forum_category ='".Database::escape_string($id)."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - while ($row=Database::fetch_array($result)) - { - handle_mail_cue('forum',$row['forum_id']); - } - } - else - { - return get_lang('Error'); - } -} -/** -* This function sends the mails for the mail notification -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function send_mail($user_info=array(), $thread_information=array()) -{ - global $_course; - global $_user; - - $email_subject = get_lang('NewForumPost')." - ".$_course['official_code']; - - if (isset($thread_information) and is_array($thread_information)) - { - $thread_link= api_get_path('WEB_CODE_PATH').'forum/viewthread.php?'.api_get_cidreq().'&forum='.$thread_information['forum_id'].'&thread='.$thread_information['thread_id']; - } - $email_body= $user_info['firstname']." ".$user_info['lastname']."\n\r"; - $email_body .= '['.$_course['official_code'].'] - ['.$_course['name']."]
\n"; - $email_body .= get_lang('NewForumPost')."\n"; - $email_body .= get_lang('YouWantedToStayInformed')."

\n"; - $email_body .= get_lang('ThreadCanBeFoundHere')." : ".$thread_link."\n"; - - //set the charset and use it for the encoding of the email - small fix, not really clean (should check the content encoding origin first) - //here we use the encoding used for the webpage where the text is encoded (ISO-8859-1 in this case) - if(empty($charset)){$charset='ISO-8859-1';} - - if ($user_info['user_id']<>$_user['user_id']) - { - $newmail = api_mail_html($user_info["lastname"].' '.$user_info["firstname"], $user_info["email"], $email_subject, $email_body, $_SESSION['_user']['lastName'].' '.$_SESSION['_user']['firstName'], $_SESSION['_user']['mail']); - } -} - -/** -* This function displays the form for moving a thread to a different (already existing) forum -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function move_thread_form() -{ - global $origin; - - // initiate the object - $form = new FormValidator('movepost', 'post', api_get_self().'?forum='.Security::remove_XSS($_GET['forum']).'&thread='.Security::remove_XSS($_GET['thread']).'&action='.Security::remove_XSS($_GET['action']).'&origin='.$origin); - // the header for the form - $form->addElement('header', '', get_lang('MoveThread')); - // invisible form: the thread_id - $form->addElement('hidden', 'thread_id', strval(intval($_GET['thread']))); // note: this has to be cleaned first - - // the fora - $forum_categories=get_forum_categories(); - $forums=get_forums(); - - $htmlcontent="\n\n\n\n\n"; - $form->addElement('html',$htmlcontent); - - // The OK button - $form->addElement('submit', 'SubmitForum', get_lang('OK')); - - // The validation or display - if( $form->validate()) - { - $values = $form->exportValues(); - if (isset($_POST['forum'])) - { - store_move_thread($values); - } - - } - else - { - $form->display(); - } -} - -/** -* This function displays the form for moving a post message to a different (already existing) or a new thread. -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function move_post_form() -{ - // initiate the object - $form = new FormValidator('movepost', 'post', api_get_self().'?forum='.Security::remove_XSS($_GET['forum']).'&thread='.Security::remove_XSS($_GET['thread']).'&post='.Security::remove_XSS($_GET['post']).'&action='.Security::remove_XSS($_GET['action']).'&post='.Security::remove_XSS($_GET['post'])); - // the header for the form - $form->addElement('header', '', get_lang('MovePost')); - - // invisible form: the post_id - $form->addElement('hidden', 'post_id', strval(intval($_GET['post']))); // note: this has to be cleaned first - - // dropdown list: Threads of this forum - $threads=get_threads(strval(intval($_GET['forum']))); // note: this has to be cleaned - //my_print_r($threads); - $threads_list[0]=get_lang('ANewThread'); - foreach ($threads as $key=>$value) - { - $threads_list[$value['thread_id']]=$value['thread_title']; - } - $form->addElement('select', 'thread', get_lang('MoveToThread'), $threads_list); - - - // The OK button - $form->addElement('submit', '', get_lang('OK')); - - // setting the rules - $form->addRule('thread', get_lang('ThisFieldIsRequired'), 'required'); - - - // The validation or display - if( $form->validate() ) - { - $values = $form->exportValues(); - store_move_post($values); - } - else - { - $form->display(); - } -} - -/** -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function store_move_post($values) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - global $_course; - - if ($values['thread']=='0') - { - $current_post=get_post_information($values['post_id']); - - // storing a new thread - $sql="INSERT INTO $table_threads (thread_title, forum_id, thread_poster_id, thread_poster_name, thread_last_post, thread_date) - VALUES ( - '".Database::escape_string($current_post['post_title'])."', - '".Database::escape_string($current_post['forum_id'])."', - '".Database::escape_string($current_post['poster_id'])."', - '".Database::escape_string($current_post['poster_name'])."', - '".Database::escape_string($values['post_id'])."', - '".Database::escape_string($current_post['post_date'])."' - )"; - $result=api_sql_query($sql, __LINE__, __FILE__); - $new_thread_id=Database::get_last_insert_id(); - api_item_property_update($_course, TOOL_FORUM_THREAD, $new_thread_id,"visible", $current_post['poster_id']); - - // moving the post to the newly created thread - $sql="UPDATE $table_posts SET thread_id='".Database::escape_string($new_thread_id)."', post_parent_id='0' WHERE post_id='".Database::escape_string($values['post_id'])."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - - // resetting the parent_id of the thread to 0 for all those who had this moved post as parent - $sql="UPDATE $table_posts SET post_parent_id='0' WHERE post_parent_id='".Database::escape_string($values['post_id'])."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - - // updating updating the number of threads in the forum - $sql="UPDATE $table_forums SET forum_threads=forum_threads+1 WHERE forum_id='".Database::escape_string($current_post['forum_id'])."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - - // resetting the last post of the old thread and decreasing the number of replies and the thread - $sql="SELECT * FROM $table_posts WHERE thread_id='".Database::escape_string($current_post['thread_id'])."' ORDER BY post_id DESC"; - $result=api_sql_query($sql, __LINE__, __FILE__); - $row=Database::fetch_array($result); - $sql="UPDATE $table_threads SET thread_last_post='".$row['post_id']."', thread_replies=thread_replies-1 WHERE thread_id='".Database::escape_string($current_post['thread_id'])."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - - } - else - { - // moving to the chosen thread - $sql="UPDATE $table_posts SET thread_id='".Database::escape_string($_POST['thread'])."', post_parent_id='0' WHERE post_id='".Database::escape_string($values['post_id'])."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - - // resetting the parent_id of the thread to 0 for all those who had this moved post as parent - $sql="UPDATE $table_posts SET post_parent_id='0' WHERE post_parent_id='".Database::escape_string($values['post_id'])."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - } - - return get_lang('ThreadMoved'); -} - -/** -* -* @param -* @return -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function store_move_thread($values) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); - global $_course; - - // change the thread table: setting the forum_id to the new forum - $sql="UPDATE $table_threads SET forum_id='".Database::escape_string($_POST['forum'])."' WHERE thread_id='".Database::escape_string($_POST['thread_id'])."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - - // changing all the posts of the thread: setting the forum_id to the new forum - $sql="UPDATE $table_posts SET forum_id='".Database::escape_string($_POST['forum'])."' WHERE thread_id='".Database::escape_string($_POST['thread_id'])."'"; - $result=api_sql_query($sql, __LINE__, __FILE__); - - return get_lang('ThreadMoved'); -} - - -/** -* Prepares a string or an array of strings for display by stripping slashes -* @param mixed String or array of strings -* @return mixed String or array of strings -* -* @author Patrick Cool , Ghent University -* @version february 2006, dokeos 1.8 -*/ -function prepare4display($input='') -{ - $highlightcolors = array('yellow', '#33CC33','#3399CC', '#9999FF', '#33CC33'); - if (!is_array($input)) - { - if (!empty($_GET['search'])) - { - if (strstr($_GET['search'],'+')) - { - $search_terms = explode('+',$_GET['search']); - } - else - { - $search_terms[] = trim($_GET['search']); - } - $counter = 0; - foreach ($search_terms as $key=>$search_term) - { - $input = str_replace(trim(html_entity_decode($search_term)),''.trim(html_entity_decode($search_term)).'',$input); - $counter++; - } - } - return stripslashes($input); - } - else - { - $returnarray=array_walk($input, 'stripslashes'); - return $returnarray; - } -} - -/** - * Display the search form for the forum and display the search results - * - * @author Patrick Cool , Ghent University, Belgium - * @version march 2008, dokeos 1.8.5 - */ -function forum_search() -{ - // initiate the object - $form = new FormValidator('forumsearch'); - - // settting the form elements - $form->addElement('header', '', get_lang('ForumSearch')); - $form->addElement('text', 'search_term', get_lang('SearchTerm'),'class="input_titles"'); - $form->addElement('static', 'search_information', '', get_lang('ForumSearchInformation'), $dissertation[Security::remove_XSS($_GET['opleidingsonderdeelcode'])]['code']); - $form->addElement('submit', 'SubmitForumCategory', get_lang('Search')); - - // setting the rules - $form->addRule('search_term', '
'.get_lang('ThisFieldIsRequired'), 'required'); - $form->addRule('search_term', get_lang('TooShort'),'minlength',3); - - // The validation or display - if( $form->validate() ) - { - $values = $form->exportValues(); - $form->setDefaults($values); - $form->display(); - - // display the search results - display_forum_search_results($values['search_term']); - } - else - { - $form->display(); - } -} -/** - * Display the search results - * - * @author Patrick Cool , Ghent University, Belgium - * @version march 2008, dokeos 1.8.5 - */ -function display_forum_search_results($search_term) -{ - global $table_categories, $table_forums, $table_threads, $table_posts; - - // defining the search strings as an array - if (strstr($search_term,'+')) - { - $search_terms = explode('+',$search_term); - } - else - { - $search_terms[] = $search_term; - } - - // search restriction - foreach ($search_terms as $key => $value) - { - $search_restriction[] = "(posts.post_title LIKE '%".Database::escape_string(trim($value))."%' - OR posts.post_text LIKE '%".Database::escape_string(trim($value))."%')"; - } - - $sql = "SELECT * FROM $table_posts posts - WHERE ".implode(' AND ',$search_restriction)." - /*AND posts.thread_id = threads.thread_id*/ - GROUP BY posts.post_id"; - - // getting all the information of the forum categories - $forum_categories_list=get_forum_categories(); - - // getting all the information of the forums - $forum_list=get_forums(); - - $result = api_sql_query($sql, __FILE__, __LINE__); - while ($row = Database::fetch_array($result,'ASSOC')) - { - $display_result = false; - /* - we only show it when - 1. forum cateogory is visible - 2. forum is visible - 3. thread is visible (to do) - 4. post is visible - */ - if (!api_is_allowed_to_edit(false,true)) - { - if ($forum_categories_list[$row['forum_id']['forum_category']]['visibility'] == '1' AND $forum_list[$row['forum_id']]['visibility'] == '1' AND $row['visible'] == '1') - { - $display_result = true; - } - } - else - { - $display_result = true; - } - - if ($display_result == true) - { - $search_results_item = '
  • '.$forum_categories_list[$row['forum_id']['forum_category']]['cat_title'].' > '; - $search_results_item .= ''.$forum_list[$row['forum_id']]['forum_title'].' > '; - //$search_results_item .= 'THREAD > '; - $search_results_item .= ''.$row['post_title'].''; - $search_results_item .= '
    '; - if (strlen($row['post_title']) > 200 ) - { - $search_results_item .= substr(strip_tags($row['post_title']),0,200).'...'; - } - else - { - $search_results_item .= $row['post_title']; - } - $search_results_item .= '
  • '; - - - - $search_results[] = $search_results_item; - } - } - echo '
    '.count($search_results).' '.get_lang('ForumSearchResults').'
    '; - echo '
      '; - echo implode($search_results); - echo '
    '; -} - -/** - * Return the link to the forum search page - * - * @author Patrick Cool , Ghent University, Belgium - * @version April 2008, dokeos 1.8.5 - */ -function search_link() -{ - $return = ' '.Display::return_icon('search.gif').' '.get_lang('Search').''; - if (!empty($_GET['search'])) - { - $return .= ': '.Security::remove_XSS($_GET['search']).' '; - $url = api_get_self().'?'; - foreach ($_GET as $key=>$value) - { - if ($key<>'search') - { - $url_parameter[]=Security::remove_XSS($key).'='.Security::remove_XSS($value); - } - } - $url = $url.implode('&',$url_parameter); - $return .= ''.Display::return_icon('delete.gif', get_lang('RemoveSearchResults')).''; - } - return $return; -} - -/** - * Show a list with all the attachments according to the post's id - * @param the post's id - * @return array with the post info - * @author Julio Montoya Dokeos - * @version avril 2008, dokeos 1.8.5 - */ - -function get_attachment($post_id) -{ - $forum_table_attachment = Database :: get_course_table(TABLE_FORUM_ATTACHMENT); - $row=array(); - $sql = 'SELECT path, filename,comment FROM '. $forum_table_attachment.' WHERE post_id ="'.$post_id.'"'; - $result=api_sql_query($sql, __FILE__, __LINE__); - if (Database::num_rows($result)!=0) - { - $row=Database::fetch_array($result); - } - return $row; -} -/** - * Delete the all the attachments from the DB and the file according to the post's id - * @param post id - * @author Julio Montoya Dokeos - * @version avril 2008, dokeos 1.8.5 - */ - -function delete_attachment($id) -{ - $forum_table_attachment = Database :: get_course_table(TABLE_FORUM_ATTACHMENT); - global $_course; - - $attach_list=get_attachment($id); - $sql = 'DELETE FROM '. $forum_table_attachment.' WHERE post_id ="'.$id.'"'; - $result=api_sql_query($sql, __FILE__, __LINE__); - - $courseDir = $_course['path'].'/upload/forum'; - $sys_course_path = api_get_path(SYS_COURSE_PATH); - $updir = $sys_course_path.$courseDir; - $file=$updir.'/'.$attach_list['path']; - - api_item_property_update($_course, TOOL_FORUM_ATTACH, $id ,'ForumAttachmentDelete', api_get_user_id()); - - if (Security::check_abs_path($file,$updir) ) - { - @ unlink($file); - } -} + } + + return get_lang('ThreadMoved'); +} + +/** +* +* @param +* @return +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function store_move_thread($values) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); + global $_course; + + // change the thread table: setting the forum_id to the new forum + $sql="UPDATE $table_threads SET forum_id='".Database::escape_string($_POST['forum'])."' WHERE thread_id='".Database::escape_string($_POST['thread_id'])."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + + // changing all the posts of the thread: setting the forum_id to the new forum + $sql="UPDATE $table_posts SET forum_id='".Database::escape_string($_POST['forum'])."' WHERE thread_id='".Database::escape_string($_POST['thread_id'])."'"; + $result=api_sql_query($sql, __LINE__, __FILE__); + + return get_lang('ThreadMoved'); +} + + +/** +* Prepares a string or an array of strings for display by stripping slashes +* @param mixed String or array of strings +* @return mixed String or array of strings +* +* @author Patrick Cool , Ghent University +* @version february 2006, dokeos 1.8 +*/ +function prepare4display($input='') +{ + $highlightcolors = array('yellow', '#33CC33','#3399CC', '#9999FF', '#33CC33'); + if (!is_array($input)) + { + if (!empty($_GET['search'])) + { + if (strstr($_GET['search'],'+')) + { + $search_terms = explode('+',$_GET['search']); + } + else + { + $search_terms[] = trim($_GET['search']); + } + $counter = 0; + foreach ($search_terms as $key=>$search_term) + { + $input = str_replace(trim(html_entity_decode($search_term)),''.trim(html_entity_decode($search_term)).'',$input); + $counter++; + } + } + return stripslashes($input); + } + else + { + $returnarray=array_walk($input, 'stripslashes'); + return $returnarray; + } +} + +/** + * Display the search form for the forum and display the search results + * + * @author Patrick Cool , Ghent University, Belgium + * @version march 2008, dokeos 1.8.5 + */ +function forum_search() +{ + // initiate the object + $form = new FormValidator('forumsearch'); + + // settting the form elements + $form->addElement('header', '', get_lang('ForumSearch')); + $form->addElement('text', 'search_term', get_lang('SearchTerm'),'class="input_titles"'); + $form->addElement('static', 'search_information', '', get_lang('ForumSearchInformation'), $dissertation[Security::remove_XSS($_GET['opleidingsonderdeelcode'])]['code']); + $form->addElement('submit', 'SubmitForumCategory', get_lang('Search')); + + // setting the rules + $form->addRule('search_term', '
    '.get_lang('ThisFieldIsRequired'), 'required'); + $form->addRule('search_term', get_lang('TooShort'),'minlength',3); + + // The validation or display + if( $form->validate() ) + { + $values = $form->exportValues(); + $form->setDefaults($values); + $form->display(); + + // display the search results + display_forum_search_results($values['search_term']); + } + else + { + $form->display(); + } +} +/** + * Display the search results + * + * @author Patrick Cool , Ghent University, Belgium + * @version march 2008, dokeos 1.8.5 + */ +function display_forum_search_results($search_term) +{ + global $table_categories, $table_forums, $table_threads, $table_posts; + + // defining the search strings as an array + if (strstr($search_term,'+')) + { + $search_terms = explode('+',$search_term); + } + else + { + $search_terms[] = $search_term; + } + + // search restriction + foreach ($search_terms as $key => $value) + { + $search_restriction[] = "(posts.post_title LIKE '%".Database::escape_string(trim($value))."%' + OR posts.post_text LIKE '%".Database::escape_string(trim($value))."%')"; + } + + $sql = "SELECT * FROM $table_posts posts + WHERE ".implode(' AND ',$search_restriction)." + /*AND posts.thread_id = threads.thread_id*/ + GROUP BY posts.post_id"; + + // getting all the information of the forum categories + $forum_categories_list=get_forum_categories(); + + // getting all the information of the forums + $forum_list=get_forums(); + + $result = api_sql_query($sql, __FILE__, __LINE__); + while ($row = Database::fetch_array($result,'ASSOC')) + { + $display_result = false; + /* + we only show it when + 1. forum cateogory is visible + 2. forum is visible + 3. thread is visible (to do) + 4. post is visible + */ + if (!api_is_allowed_to_edit(false,true)) + { + if ($forum_categories_list[$row['forum_id']['forum_category']]['visibility'] == '1' AND $forum_list[$row['forum_id']]['visibility'] == '1' AND $row['visible'] == '1') + { + $display_result = true; + } + } + else + { + $display_result = true; + } + + if ($display_result == true) + { + $search_results_item = '
  • '.$forum_categories_list[$row['forum_id']['forum_category']]['cat_title'].' > '; + $search_results_item .= ''.$forum_list[$row['forum_id']]['forum_title'].' > '; + //$search_results_item .= 'THREAD > '; + $search_results_item .= ''.$row['post_title'].''; + $search_results_item .= '
    '; + if (strlen($row['post_title']) > 200 ) + { + $search_results_item .= substr(strip_tags($row['post_title']),0,200).'...'; + } + else + { + $search_results_item .= $row['post_title']; + } + $search_results_item .= '
  • '; + + + + $search_results[] = $search_results_item; + } + } + echo '
    '.count($search_results).' '.get_lang('ForumSearchResults').'
    '; + echo '
      '; + echo implode($search_results); + echo '
    '; +} + +/** + * Return the link to the forum search page + * + * @author Patrick Cool , Ghent University, Belgium + * @version April 2008, dokeos 1.8.5 + */ +function search_link() +{ + $return = ' '.Display::return_icon('search.gif').' '.get_lang('Search').''; + if (!empty($_GET['search'])) + { + $return .= ': '.Security::remove_XSS($_GET['search']).' '; + $url = api_get_self().'?'; + foreach ($_GET as $key=>$value) + { + if ($key<>'search') + { + $url_parameter[]=Security::remove_XSS($key).'='.Security::remove_XSS($value); + } + } + $url = $url.implode('&',$url_parameter); + $return .= ''.Display::return_icon('delete.gif', get_lang('RemoveSearchResults')).''; + } + return $return; +} + +/** + * Show a list with all the attachments according to the post's id + * @param the post's id + * @return array with the post info + * @author Julio Montoya Dokeos + * @version avril 2008, dokeos 1.8.5 + */ + +function get_attachment($post_id) +{ + $forum_table_attachment = Database :: get_course_table(TABLE_FORUM_ATTACHMENT); + $row=array(); + $sql = 'SELECT path, filename,comment FROM '. $forum_table_attachment.' WHERE post_id ="'.$post_id.'"'; + $result=api_sql_query($sql, __FILE__, __LINE__); + if (Database::num_rows($result)!=0) + { + $row=Database::fetch_array($result); + } + return $row; +} +/** + * Delete the all the attachments from the DB and the file according to the post's id + * @param post id + * @author Julio Montoya Dokeos + * @version avril 2008, dokeos 1.8.5 + */ + +function delete_attachment($id) +{ + $forum_table_attachment = Database :: get_course_table(TABLE_FORUM_ATTACHMENT); + global $_course; + + $attach_list=get_attachment($id); + $sql = 'DELETE FROM '. $forum_table_attachment.' WHERE post_id ="'.$id.'"'; + $result=api_sql_query($sql, __FILE__, __LINE__); + + $courseDir = $_course['path'].'/upload/forum'; + $sys_course_path = api_get_path(SYS_COURSE_PATH); + $updir = $sys_course_path.$courseDir; + $file=$updir.'/'.$attach_list['path']; + + api_item_property_update($_course, TOOL_FORUM_ATTACH, $id ,'ForumAttachmentDelete', api_get_user_id()); + + if (Security::check_abs_path($file,$updir) ) + { + @ unlink($file); + } +} /** * This function gets all the forum information of the all the forum of the group * @@ -3425,11 +3427,11 @@ function delete_attachment($id) * @todo this is basically the same code as the get_forums function. Consider merging the two. */ function get_forums_of_group($group_id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - $table_forums = Database :: get_course_table(TABLE_FORUM); - $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + $table_forums = Database :: get_course_table(TABLE_FORUM); + $table_threads = Database :: get_course_table(TABLE_FORUM_THREAD); $table_item_property = Database :: get_course_table(TABLE_ITEM_PROPERTY); //-------------- Student -----------------// @@ -3488,31 +3490,31 @@ function get_forums_of_group($group_id) // handling the threadcount information $result2=api_sql_query($sql2, __FILE__, __LINE__); while ($row2=Database::fetch_array($result2,'ASSOC')) - { - if (is_array($forum_list)) + { + if (is_array($forum_list)) { if (array_key_exists($row2['forum_id'],$forum_list)) { $forum_list[$row2['forum_id']]['number_of_threads']=$row2['number_of_threads']; - } + } } } // handling the postcount information $result3=api_sql_query($sql3, __FILE__, __LINE__); while ($row3=Database::fetch_array($result3,'ASSOC')) - { - if (is_array($forum_list)) + { + if (is_array($forum_list)) { if (array_key_exists($row3['forum_id'],$forum_list)) // this is needed because sql3 takes also the deleted forums into account { $forum_list[$row3['forum_id']]['number_of_posts']=$row3['number_of_posts']; - } + } } } - // finding the last post information (last_post_id, last_poster_id, last_post_date, last_poster_name, last_poster_lastname, last_poster_firstname) - if (is_array($forum_list)) + // finding the last post information (last_post_id, last_poster_id, last_post_date, last_poster_name, last_poster_lastname, last_poster_firstname) + if (is_array($forum_list)) { foreach ($forum_list as $key=>$value) { @@ -3526,7 +3528,7 @@ function get_forums_of_group($group_id) } } return $forum_list; -} +} /** * This function stores which users have to be notified of which forums or threads @@ -3734,156 +3736,156 @@ function get_notifications_of_user($user_id = 0, $force = false) } } } -} - -/** -* This function counts the number of posts inside a thread -* @param int Thread ID -* @return int The number of posts inside a thread -* @author Jhon Hinojosa , -* @version October 2008, dokeos 1.8 -*/ -function count_number_of_post_in_thread($thread_id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $sql = "SELECT * FROM $table_posts WHERE thread_id='".(int)$thread_id."' "; - $result = api_sql_query($sql, __FILE__, __LINE__); - return count(api_store_result($result)); -} - -/** -* This function counts the number of posts inside a thread from a given user -* @param int Thread ID -* @param int User ID -* @return int The number of post inside a thread user -* @author Jhon Hinojosa , -* @version October 2008, dokeos 1.8 -*/ -function count_number_of_post_for_user_thread($thread_id, $user_id) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $sql = "SELECT * FROM $table_posts WHERE thread_id='".(int)$thread_id."' - AND poster_id = '".(int)$user_id."' "; - $result = api_sql_query($sql, __FILE__, __LINE__); - return count(api_store_result($result)); -} - -/** -* This function counts the number of users registered in a given course -* @param string Course ID -* @return int the number of user register in course -* @author Jhon Hinojosa , -* @version October 2008, dokeos 1.8 -*/ -function count_number_of_user_in_course($course_id) -{ - $table_course_rel_user = Database::get_main_table("course_rel_user"); - $sql = "SELECT * FROM $table_course_rel_user WHERE course_code ='".Database::escape_string($course_id)."' "; - $result = api_sql_query($sql, __FILE__, __LINE__); - return count(api_store_result($result)); -} - -/** -* With this function we find the average of thread post a user -* @param int Thread ID -* @return int average of thread post a user -* @author Jhon Hinojosa , -* @version October 2008, dokeos 1.8 -*/ -function get_average_of_thread_post_user($thread_id) -{ - $average = ''; - return $average; -} - -/** -* This function retrieves statistical information -* @param int Thread ID -* @param int User ID -* @param int Course ID -* @return array the statistical information -* @author Jhon Hinojosa , -* @version October 2008, dokeos 1.8 -*/ -function get_statistical_information($thread_id, $user_id, $course_id) -{ - $statistics = array(); - $statistics['user_course'] = count_number_of_user_in_course($course_id); - $statistics['post'] = count_number_of_post_in_thread($thread_id); - $statistics['user_post'] = count_number_of_post_for_user_thread($thread_id, $user_id); - $statistics['average'] = get_average_of_thread_post_user(); - return $statistics; -} - -/** -* Counts the number of posts inside a thread -* @param int Thread ID -* @param int User ID -* @return int the number of posts inside a thread -* @author Jhon Hinojosa , -* @version October 2008, dokeos 1.8 -*/ -function get_thread_user_post($thread_id, $user_id ) -{ - $table_posts = Database :: get_course_table(TABLE_FORUM_POST); - $table_users = Database :: get_main_table(TABLE_MAIN_USER); - - $sql = "SELECT * FROM $table_posts posts - LEFT JOIN $table_users users - ON posts.poster_id=users.user_id - WHERE posts.thread_id='".(int)$thread_id."' - AND posts.poster_id='".(int)$user_id."' - ORDER BY posts.post_id ASC"; - - $result=api_sql_query($sql, __FILE__, __LINE__); - - while ($row=Database::fetch_array($result)) - { - $row['status'] = '1'; - $post_list[]=$row; - $sql = "SELECT * FROM $table_posts posts - LEFT JOIN $table_users users - ON posts.poster_id=users.user_id - WHERE posts.thread_id='".Database::escape_string($thread_id)."' - AND posts.post_parent_id='".$row['post_id']."' - ORDER BY posts.post_id ASC"; - $result2=api_sql_query($sql, __FILE__, __LINE__); - while ($row2=Database::fetch_array($result2)) - { - $row2['status'] = '0'; - $post_list[] = $row2; - } - } - return $post_list; -} - - -/** - * This function gets an user's name by id - * @param user_id int - * @return String - * @author Christian Fasanando - */ -function get_name_user_by_id($user_id) -{ - $t_users = Database :: get_main_table(TABLE_MAIN_USER); - $sql ="SELECT CONCAT(firstname,' ',lastname) FROM ".$t_users." WHERE user_id = '".(int)$user_id."' "; - $result = api_sql_query($sql, __FILE__, __LINE__); - $row = Database::fetch_array($result); - return $row[0]; -} - -/** - * This function gets a thread's name by id - * @param thread_id int - * @return String - * @author Christian Fasanando - */ -function get_name_thread_by_id($thread_id) -{ - $t_forum_thread = Database::get_course_table(TABLE_FORUM_THREAD,''); - $sql ="SELECT thread_title FROM ".$t_forum_thread." WHERE thread_id = '".(int)$thread_id."' "; - $result = api_sql_query($sql, __FILE__, __LINE__); - $row = Database::fetch_array($result); - return $row[0]; +} + +/** +* This function counts the number of posts inside a thread +* @param int Thread ID +* @return int The number of posts inside a thread +* @author Jhon Hinojosa , +* @version October 2008, dokeos 1.8 +*/ +function count_number_of_post_in_thread($thread_id) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $sql = "SELECT * FROM $table_posts WHERE thread_id='".(int)$thread_id."' "; + $result = api_sql_query($sql, __FILE__, __LINE__); + return count(api_store_result($result)); +} + +/** +* This function counts the number of posts inside a thread from a given user +* @param int Thread ID +* @param int User ID +* @return int The number of post inside a thread user +* @author Jhon Hinojosa , +* @version October 2008, dokeos 1.8 +*/ +function count_number_of_post_for_user_thread($thread_id, $user_id) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $sql = "SELECT * FROM $table_posts WHERE thread_id='".(int)$thread_id."' + AND poster_id = '".(int)$user_id."' "; + $result = api_sql_query($sql, __FILE__, __LINE__); + return count(api_store_result($result)); +} + +/** +* This function counts the number of users registered in a given course +* @param string Course ID +* @return int the number of user register in course +* @author Jhon Hinojosa , +* @version October 2008, dokeos 1.8 +*/ +function count_number_of_user_in_course($course_id) +{ + $table_course_rel_user = Database::get_main_table("course_rel_user"); + $sql = "SELECT * FROM $table_course_rel_user WHERE course_code ='".Database::escape_string($course_id)."' "; + $result = api_sql_query($sql, __FILE__, __LINE__); + return count(api_store_result($result)); +} + +/** +* With this function we find the average of thread post a user +* @param int Thread ID +* @return int average of thread post a user +* @author Jhon Hinojosa , +* @version October 2008, dokeos 1.8 +*/ +function get_average_of_thread_post_user($thread_id) +{ + $average = ''; + return $average; +} + +/** +* This function retrieves statistical information +* @param int Thread ID +* @param int User ID +* @param int Course ID +* @return array the statistical information +* @author Jhon Hinojosa , +* @version October 2008, dokeos 1.8 +*/ +function get_statistical_information($thread_id, $user_id, $course_id) +{ + $statistics = array(); + $statistics['user_course'] = count_number_of_user_in_course($course_id); + $statistics['post'] = count_number_of_post_in_thread($thread_id); + $statistics['user_post'] = count_number_of_post_for_user_thread($thread_id, $user_id); + $statistics['average'] = get_average_of_thread_post_user(); + return $statistics; +} + +/** +* Counts the number of posts inside a thread +* @param int Thread ID +* @param int User ID +* @return int the number of posts inside a thread +* @author Jhon Hinojosa , +* @version October 2008, dokeos 1.8 +*/ +function get_thread_user_post($thread_id, $user_id ) +{ + $table_posts = Database :: get_course_table(TABLE_FORUM_POST); + $table_users = Database :: get_main_table(TABLE_MAIN_USER); + + $sql = "SELECT * FROM $table_posts posts + LEFT JOIN $table_users users + ON posts.poster_id=users.user_id + WHERE posts.thread_id='".(int)$thread_id."' + AND posts.poster_id='".(int)$user_id."' + ORDER BY posts.post_id ASC"; + + $result=api_sql_query($sql, __FILE__, __LINE__); + + while ($row=Database::fetch_array($result)) + { + $row['status'] = '1'; + $post_list[]=$row; + $sql = "SELECT * FROM $table_posts posts + LEFT JOIN $table_users users + ON posts.poster_id=users.user_id + WHERE posts.thread_id='".Database::escape_string($thread_id)."' + AND posts.post_parent_id='".$row['post_id']."' + ORDER BY posts.post_id ASC"; + $result2=api_sql_query($sql, __FILE__, __LINE__); + while ($row2=Database::fetch_array($result2)) + { + $row2['status'] = '0'; + $post_list[] = $row2; + } + } + return $post_list; +} + + +/** + * This function gets an user's name by id + * @param user_id int + * @return String + * @author Christian Fasanando + */ +function get_name_user_by_id($user_id) +{ + $t_users = Database :: get_main_table(TABLE_MAIN_USER); + $sql ="SELECT CONCAT(firstname,' ',lastname) FROM ".$t_users." WHERE user_id = '".(int)$user_id."' "; + $result = api_sql_query($sql, __FILE__, __LINE__); + $row = Database::fetch_array($result); + return $row[0]; +} + +/** + * This function gets a thread's name by id + * @param thread_id int + * @return String + * @author Christian Fasanando + */ +function get_name_thread_by_id($thread_id) +{ + $t_forum_thread = Database::get_course_table(TABLE_FORUM_THREAD,''); + $sql ="SELECT thread_title FROM ".$t_forum_thread." WHERE thread_id = '".(int)$thread_id."' "; + $result = api_sql_query($sql, __FILE__, __LINE__); + $row = Database::fetch_array($result); + return $row[0]; } \ No newline at end of file diff --git a/main/forum/forumsearch.php b/main/forum/forumsearch.php index d1be6a12d3..d4f140d08f 100644 --- a/main/forum/forumsearch.php +++ b/main/forum/forumsearch.php @@ -1,89 +1,92 @@ -, Ghent University -* @Copyright Ghent University -* @Copyright Patrick Cool -* -* @package dokeos.forum -*/ - -// 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; - -// notice for unauthorized people. -api_protect_course_script(true); - -// 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'); -include(api_get_path(LIBRARY_PATH).'events.lib.inc.php'); -include('forumfunction.inc.php'); -include('forumconfig.inc.php'); - - -// name of the tool -$nameTools=get_lang('Forum'); - -// breadcrumbs -$interbreadcrumb[]=array('url' => 'index.php','name' => $nameTools); -$interbreadcrumb[]=array('url' => 'forumsearch.php','name' => get_lang('ForumSearch')); - -// Display the header -Display :: display_header($nameTools); - -// Display the tool title -api_display_tool_title($nameTools); - -// tool introduction -Display::display_introduction_section(TOOL_FORUM); - -// tracking -event_access_tool(TOOL_FORUM); - -// forum search -forum_search(); - -// footer -Display::display_footer(); +, Ghent University +* @Copyright Ghent University +* @Copyright Patrick Cool +* +* @package dokeos.forum +*/ + +// 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; + +// notice for unauthorized people. +api_protect_course_script(true); + +// 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'); +include(api_get_path(LIBRARY_PATH).'events.lib.inc.php'); +include('forumfunction.inc.php'); +include('forumconfig.inc.php'); + + +// name of the tool +$nameTools=get_lang('Forum'); + +// breadcrumbs +$interbreadcrumb[]=array('url' => 'index.php','name' => $nameTools); +$interbreadcrumb[]=array('url' => 'forumsearch.php','name' => get_lang('ForumSearch')); + +// Display the header +Display :: display_header($nameTools); + +// Display the tool title +api_display_tool_title($nameTools); + +// tool introduction +Display::display_introduction_section(TOOL_FORUM,'left'); + +// tracking +event_access_tool(TOOL_FORUM); + +// forum search +forum_search(); + +// footer +Display::display_footer(); ?> \ No newline at end of file diff --git a/main/forum/index.php b/main/forum/index.php index 3e0931ac97..08d66a3cda 100644 --- a/main/forum/index.php +++ b/main/forum/index.php @@ -1,10 +1,13 @@ -'; // tool introduction -Display::display_introduction_section(TOOL_FORUM); +Display::display_introduction_section(TOOL_FORUM,'left'); + + /* ------------------------------------------------------------------------------------------------------ @@ -180,6 +185,7 @@ if ($_GET['action']!='add' && $_GET['action']!='edit' ) { ------------------------------------------------------------------------------------------------------ */ //if (api_is_allowed_to_edit() and !$_GET['action']) + echo '
    '; echo ''.search_link().''; if (api_is_allowed_to_edit(false,true)) { echo ' '.Display::return_icon('forum_category_new.gif').' '.get_lang('AddForumCategory').' '; @@ -188,13 +194,14 @@ if ($_GET['action']!='add' && $_GET['action']!='edit' ) { } //echo ' | '.get_lang('MigrateForum').''; } + echo '
    '; /* ------------------------------------------------------------------------------------------------------ Display Forum Categories and the Forums in it ------------------------------------------------------------------------------------------------------ */ - echo ''."\n"; + echo '
    '."\n"; // Step 3: we display the forum_categories first if(is_array($forum_categories_list)) { foreach ($forum_categories_list as $forum_category_key => $forum_category) { @@ -212,7 +219,7 @@ if ($_GET['action']!='add' && $_GET['action']!='edit' ) { } echo "\n"; - echo '\n\t\t\n\t\t
    '; + echo ''; if (api_is_allowed_to_edit(false,true) && !($forum_category['session_id']==0 && intval($_SESSION['id_session'])!=0)) { echo "".icon('../img/edit.gif',get_lang('Edit')).""; echo "".icon('../img/delete.gif',get_lang('Delete')).""; diff --git a/main/forum/newthread.php b/main/forum/newthread.php index 3059a9ea32..16309422cc 100644 --- a/main/forum/newthread.php +++ b/main/forum/newthread.php @@ -1,10 +1,13 @@ -\n"; if ($origin != 'learnpath') { - echo "\t
    "; + echo "\t
    "; echo ''.prepare4display($current_forum['forum_title']).''; diff --git a/main/forum/viewforum.php b/main/forum/viewforum.php index 85e2607912..b032f46cb6 100644 --- a/main/forum/viewforum.php +++ b/main/forum/viewforum.php @@ -1,10 +1,13 @@ -'; echo ''.search_link().''; // The link should appear when // 1. the course admin is here @@ -254,17 +258,18 @@ if (api_is_allowed_to_edit(false,true) OR ($current_forum['allow_new_threads']== echo get_lang('ForumLocked'); } } +echo ''; /* ----------------------------------------------------------- Display ----------------------------------------------------------- */ -echo "\n"; +echo "
    \n"; // the current forum if ($origin != 'learnpath') { - echo "\t\n\t\t\n\t\t
    "; + echo "\t
    "; echo ''.prepare4display($current_forum['forum_title']).''; if (!empty ($current_forum['forum_comment'])) { diff --git a/main/forum/viewforumcategory.php b/main/forum/viewforumcategory.php index 63076837ba..5fe8b1386d 100644 --- a/main/forum/viewforumcategory.php +++ b/main/forum/viewforumcategory.php @@ -1,10 +1,13 @@ -'; echo ''.search_link().''; if (api_is_allowed_to_edit(false,true)) { //echo ''.get_lang('AddForumCategory').' | '; echo ''.Display::return_icon('forum_new.gif').' '.get_lang('AddForum').''; } + echo ''; /* ----------------------------------------------------------- @@ -175,12 +180,12 @@ if ($_GET['action']!='add') { */ echo "\n"; - echo "\t\n\t\t\n\t\t\n"; if (api_is_allowed_to_edit(false,true) && !($forum_category['session_id']==0 && intval($_SESSION['id_session'])!=0)) { - echo '
    "; + echo "\t
    "; echo ''.prepare4display($forum_category['cat_title']).'
    '; echo ''.prepare4display($forum_category['cat_comment']).''; echo "
    '; + echo ''; echo "".icon('../img/edit.gif',get_lang('Edit')).""; echo "".icon('../img/delete.gif',get_lang('Delete')).""; display_visible_invisible_icon('forumcategory', $forum_category['cat_id'], $forum_category['visibility'], array("forumcategory"=>$_GET['forumcategory'])); diff --git a/main/forum/viewthread.php b/main/forum/viewthread.php index 325e010734..4e1d8c08c9 100644 --- a/main/forum/viewthread.php +++ b/main/forum/viewthread.php @@ -1,10 +1,13 @@ -, Ghent University * @Copyright Ghent University @@ -150,6 +154,7 @@ if ($message<>'PostDeletedSpecial') { Action Links ----------------------------------------------------------- */ + echo '
    '; echo '
    '; $my_url = ''.get_lang('FlatView').' | '; @@ -176,8 +181,9 @@ if ($message<>'PostDeletedSpecial') { } } } - // note: this is to prevent that some browsers display the links over the table (FF does it but Opera doesn't) - echo ' '; + echo '
     '; + + /* ----------------------------------------------------------- Display Forum Category and the Forum information diff --git a/main/group/group.php b/main/group/group.php index 1e2726771c..a8021c4a08 100644 --- a/main/group/group.php +++ b/main/group/group.php @@ -1,13 +1,13 @@ -'; - echo ''; +echo '
    '; /* * List all categories */ diff --git a/main/group/group_overview.php b/main/group/group_overview.php index 58aed72490..b62ebd6087 100644 --- a/main/group/group_overview.php +++ b/main/group/group_overview.php @@ -1,13 +1,13 @@ - '.get_lang('ExportAsCSV').''; -echo ' | '.get_lang('ExportAsXLS').''; + +// action links +echo '
    '; +echo Display::return_icon('csv.gif').''.get_lang('ExportAsCSV').' '; +echo Display::return_icon('excel.gif').' '.get_lang('ExportAsXLS').''; +echo '
    '; + $categories = GroupManager::get_categories(); foreach($categories as $index => $category) { diff --git a/main/inc/banner.inc.php b/main/inc/banner.inc.php index 1e5d3bcae8..95ddb9e56f 100644 --- a/main/inc/banner.inc.php +++ b/main/inc/banner.inc.php @@ -1,29 +1,51 @@ - - -echo '
    '; -echo '
    '; -echo '
      '; +
      +
      +
        +".get_lang('UsersConnectedToMySessions').""; + echo '
      • '.get_lang('UsersConnectedToMySessions').'
      • '; } $statistics_database = Database :: get_statistic_database(); @@ -127,12 +151,12 @@ if ((api_get_setting('showonline','world') == "true" AND !$_user['user_id']) OR { $number_online_in_course = 0; } - echo "
      • ".get_lang('UsersOnline').": "; + echo '
      • '.get_lang('UsersOnline').': '; // Display the who's online of the platform if ((api_get_setting('showonline','world') == "true" AND !$_user['user_id']) OR (api_get_setting('showonline','users') == "true" AND $_user['user_id'])) { - echo "".$number.""; + echo ''.$number.''; } // Display the who's online for the course @@ -170,15 +194,10 @@ if ( api_is_allowed_to_edit() ) ?>
      - - 
      "; -?> -
    -
    +
     
    +
    + +
    - \n"; +?> +   -
    - -
    - +
    +
    + + +
    + $navigation_info) { if(!empty($navigation_info['title'])) { - $final_navigation[$index] = ''.$navigation_info['title'].''; + $final_navigation[$index] = ''.$navigation_info['title'].''; } } echo implode(' > ',$final_navigation); ?> -
    +
    + - +
     
    -
    +
    '; - echo '
    '; + echo '
    '; + echo '
    '; } } } @@ -474,8 +481,8 @@ if(api_get_setting('show_navigation_menu') != 'false' && api_get_setting('show_n { if (isset($_cid) ) { - echo '
    '; - echo '
    '; + echo '
    '; + echo '
    '; } } } @@ -571,4 +578,3 @@ function get_tabs() return $navigation; } ?> - diff --git a/main/inc/footer.inc.php b/main/inc/footer.inc.php index ef3e0b1781..62ecddacbf 100644 --- a/main/inc/footer.inc.php +++ b/main/inc/footer.inc.php @@ -1,4 +1,29 @@ - -
    - \ No newline at end of file diff --git a/main/inc/header.inc.php b/main/inc/header.inc.php index aaa6263c7b..6717135caf 100644 --- a/main/inc/header.inc.php +++ b/main/inc/header.inc.php @@ -1,4 +1,29 @@ -
    - -
    - - ' . get_lang('NewPost') . ' +
    ' . get_lang('NewPost') . '
    @@ -1340,7 +1337,7 @@ class Blog $oFCKeditor->Create() ; echo '
    - +
    @@ -1448,8 +1445,14 @@ class Blog $counter = 0; global $color2; + echo '
    '; echo 'scormbuilder' . get_lang('AddTasks') . ' '; echo 'scormbuilder' . get_lang('AssignTasks') . ''; + ?> + + '; + echo '' . get_lang('TaskList') . '
    '; echo "
    ' . get_lang('Title') . ':  
    '.get_lang('AddAnAttachment').'

    '.get_lang('AddAnAttachment').'
    ' . ucwords(get_lang('FileName') ). ':  
    ' . get_lang('FileComment'). ':  
    "; echo "", @@ -1578,11 +1581,8 @@ class Blog // Display echo ' -
    - - - - +
    ' . get_lang('AddTask') . '
    +
    ' . get_lang('AddTask') . '

    @@ -1596,19 +1596,19 @@ class Blog echo "\t" . '' . "\n"; echo "\t\t" . '' . "\n"; echo "\t\t" . '
    ' . get_lang('Title') . ':  
    Task management:  ' . "\n"; - echo "\t\t\t" . ''; - echo "\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t" . '
    ' . get_lang('ArticleManager') . '' . get_lang('CommentManager') . '
    '; + echo "\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; echo "\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; echo "\t\t\t\t" . '' . "\n"; echo "\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; echo "\t\t\t\t\t" . '' . "\n"; echo "\t\t\t\t" . '' . "\n"; echo "\t\t\t" . '
    ' . get_lang('ArticleManager') . '' . get_lang('CommentManager') . '
    ' . "\n"; @@ -1656,11 +1656,8 @@ class Blog // Display echo ' - - - - - +
    ' . get_lang('EditTask') . '
    +
    ' . get_lang('EditTask') . '

    @@ -1689,20 +1686,20 @@ class Blog echo "\t" . '' . "\n"; echo "\t\t" . '' . "\n"; echo "\t\t" . '' . "\n"; @@ -1790,11 +1787,8 @@ class Blog // Display echo ' -
    ' . get_lang('Title') . ':  
    Task management:  ' . "\n"; - echo "\t\t\t" . ''; - echo "\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t" . '
    ' . get_lang('ArticleManager') . '' . get_lang('CommentManager') . '
    '; + echo "\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; echo "\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; echo "\t\t\t\t" . '' . "\n"; echo "\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; - echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; + echo "\t\t\t\t\t" . '' . "\n"; echo "\t\t\t\t" . '' . "\n"; echo "\t\t\t" . '
    ' . get_lang('ArticleManager') . '' . get_lang('CommentManager') . '
    ' . "\n"; echo "\t\t" . '
    - - - - +
    ' . get_lang('AssignTask') . '
    +
    ' . get_lang('AssignTask') . '

    @@ -2429,13 +2423,8 @@ class Blog function display_new_comment_form($blog_id, $post_id, $title) { echo ' +
    '.(isset($_GET['task_id']) ? get_lang('ExecuteThisTask') : get_lang('NewComment')) . '
    ' . get_lang('SelectUser') . ':   ' . $select_user_list . '
    - - - @@ -2595,11 +2584,11 @@ class Blog } } - echo '
    - '.(isset($_GET['task_id']) ? get_lang('ExecuteThisTask') : get_lang('NewComment')) . '
    - -
    ' . get_lang('Title') . ':  

    ', + echo '
    ', "\n", - "\n", - "\n", - "\n", "\n"; + "\n", + "\n", + "\n", "\n"; echo "\n";
    «", $monthName, " ", $year, "»
    «", $monthName, " ", $year, "»