UI Improvements + lots of bugfixes * @package chamilo.forum */ // Delete attachment file if ((isset($_GET['action']) && $_GET['action'] == 'delete_attach') && isset($_GET['id_attach']) ) { delete_attachment(0, $_GET['id_attach']); } // Are we in a lp ? $origin = api_get_origin(); $sessionId = api_get_session_id(); $_user = api_get_user_info(); $userId = api_get_user_id(); $groupId = api_get_group_id(); // Decide whether we show the latest post first $sortDirection = isset($_GET['posts_order']) && $_GET['posts_order'] === 'desc' ? 'DESC' : ($origin != 'learnpath' ? 'ASC' : 'DESC'); if (isset($current_thread['thread_id'])) { $rows = getPosts($current_forum, $current_thread['thread_id'], $sortDirection); $increment = 0; $clean_forum_id = intval($_GET['forum']); $clean_thread_id = intval($_GET['thread']); $locked = api_resource_is_locked_by_gradebook( $clean_thread_id, LINK_FORUM_THREAD ); $closedPost = null; if (!empty($rows)) { $postCount = count($rows); foreach ($rows as $row) { if ($row['user_id'] == '0') { $name = prepare4display($row['poster_name']); } else { $name = api_get_person_name($row['firstname'], $row['lastname']); } $username = sprintf(get_lang('LoginX'), $row['username']); if (($current_forum_category && $current_forum_category['locked'] == 0) && $current_forum['locked'] == 0 && $current_thread['locked'] == 0 || api_is_allowed_to_edit(false, true) ) { if ($_user['user_id'] || ($current_forum['allow_anonymous'] == 1 && !$_user['user_id'])) { if (!api_is_anonymous() && api_is_allowed_to_session_edit(false, true)) { $buttonReply = Display::toolbarButton( get_lang('ReplyToMessage'), 'reply.php?'.api_get_cidreq().'&'.http_build_query([ 'forum' => $clean_forum_id, 'thread' => $clean_thread_id, 'post' => $row['post_id'], 'action' => 'replymessage' ]), 'reply', 'primary', ['id' => "reply-to-post-{$row['post_id']}"] ); $buttonQuote = Display::toolbarButton( get_lang('QuoteMessage'), 'reply.php?'.api_get_cidreq().'&'.http_build_query([ 'forum' => $clean_forum_id, 'thread' => $clean_thread_id, 'post' => $row['post_id'], 'action' => 'quote' ]), 'quote-left', 'success', ['id' => "quote-post-{$row['post_id']}"] ); } } } else { if (($current_forum_category && $current_forum_category['locked'] == 1)) { $closedPost = Display::tag( 'div', ' '.get_lang('ForumcategoryLocked'), array('class' => 'alert alert-warning post-closed') ); } if ($current_forum['locked'] == 1) { $closedPost = Display::tag( 'div', ' '.get_lang('ForumLocked'), array('class' => 'alert alert-warning post-closed') ); } if ($current_thread['locked'] == 1) { $closedPost = Display::tag( 'div', ' '.get_lang('ThreadLocked'), array('class' => 'alert alert-warning post-closed') ); } } $html = ''; $html .= '
'; $html .= '
'; $html .= '
'; $html .= '
'; if ($origin != 'learnpath') { if (api_get_course_setting('allow_user_image_forum')) { $html .= '
'.display_user_image($row['user_id'], $name, $origin).'
'; } $html .= Display::tag( 'h4', display_user_link($row['user_id'], $name), array('class' => 'title-username') ); } else { if (api_get_course_setting('allow_user_image_forum')) { $html .= '
'.display_user_image($row['user_id'], $name, $origin).'
'; } $name = Display::tag('strong', "#".$postCount--, ['class' => 'text-info'])." | $name"; $html .= Display::tag( 'p', $name, array( 'title' => api_htmlentities($username, ENT_QUOTES), 'class' => 'lead' ) ); } if ($origin != 'learnpath') { $html .= Display::tag( 'p', Display::dateToStringAgoAndLongDate($row['post_date']), array('class' => 'post-date') ); } else { $html .= Display::tag( 'p', Display::dateToStringAgoAndLongDate($row['post_date']), array('class' => 'text-muted') ); } // get attach id $attachment_list = get_attachment($row['post_id']); $id_attach = !empty($attachment_list) ? $attachment_list['iid'] : ''; $iconEdit = ''; $statusIcon = ''; // The user who posted it can edit his thread only if the course admin allowed // this in the properties of the forum // The course admin him/herself can do this off course always $groupInfo = GroupManager::get_group_properties($groupId); if ((isset($groupInfo['iid']) && GroupManager::is_tutor_of_group($userId, $groupInfo)) || ($current_forum['allow_edit'] == 1 && $row['user_id'] == $_user['user_id']) || ( api_is_allowed_to_edit(false, true) && !(api_is_course_coach() && $current_forum['session_id'] != $sessionId) ) ) { if (api_is_allowed_to_session_edit(false, true)) { if ($locked == false && postIsEditableByStudent($current_forum, $row)) { $iconEdit .= "" . Display::return_icon('edit.png', get_lang('Edit'), array(), ICON_SIZE_SMALL).""; } } } if ($origin != 'learnpath') { if (GroupManager::is_tutor_of_group($userId, $groupInfo) || api_is_allowed_to_edit(false, true) && !(api_is_course_coach() && $current_forum['session_id'] != $sessionId) ) { if ($locked === false) { $deleteUrl = api_get_self().'?'.api_get_cidreq().'&'.http_build_query([ 'forum' => $clean_forum_id, 'thread' => $clean_thread_id, 'action' => 'delete', 'content' => 'post', 'id' => $row['post_id'] ]); $iconEdit .= Display::url( Display::return_icon('delete.png', get_lang('Delete'), array(), ICON_SIZE_SMALL), $deleteUrl, [ 'onclick' => "javascript:if(!confirm('" . addslashes(api_htmlentities(get_lang('DeletePost'), ENT_QUOTES)) . "')) return false;", 'id' => "delete-post-{$row['post_id']}" ] ); } } $statusIcon = getPostStatus($current_forum, $row); if (GroupManager::is_tutor_of_group($userId, $groupInfo) || (api_is_allowed_to_edit(false, true) && !(api_is_course_coach() && $current_forum['session_id'] != $sessionId) ) ) { $iconEdit .= return_visible_invisible_icon( 'post', $row['post_id'], $row['visible'], array( 'forum' => $clean_forum_id, 'thread' => $clean_thread_id, 'origin' => $origin ) ); if ($increment > 0) { $iconEdit .= "" . Display::return_icon('move.png', get_lang('MovePost'), array(), ICON_SIZE_SMALL) . ""; } } } $user_status = api_get_status_of_user_in_course($row['user_id'], api_get_course_int_id()); $current_qualify_thread = showQualify('1', $row['poster_id'], $_GET['thread']); if (($current_thread['thread_peer_qualify'] == 1 || api_is_allowed_to_edit(null, true)) && $current_thread['thread_qualify_max'] > 0 && $origin != 'learnpath' ) { $my_forum_id = $clean_forum_id; if (isset($_GET['gradebook'])) { $info_thread = get_thread_information($clean_forum_id, $clean_thread_id); $my_forum_id = $info_thread['forum_id']; } $userCanEdit = $current_thread['thread_peer_qualify'] == 1 && $row['poster_id'] != $userId; /*if ($row['poster_id'] != $userId && $current_forum['moderated'] == 1 && $row['status']) { }*/ if (api_is_allowed_to_edit(null, true)) { $userCanEdit = true; } if ($increment > 0 && $locked == false && $userCanEdit) { $iconEdit .= "" . Display::return_icon('quiz.png', get_lang('Qualify')) . " "; } } if (!empty($iconEdit)) { $html .= '
'.$iconEdit.' '.$statusIcon.'
'; } else { if (!empty(strip_tags($statusIcon))) { $html .= '
'.$statusIcon.'
'; } } $html .= $closedPost; $html .= '
'; $html .= '
'; $titlePost = Display::tag( 'h3', $row['post_title'], array('class' => 'forum_post_title') ); $html .= Display::tag( 'div', $titlePost, array('class' => 'post-header') ); // see comments inside forumfunction.inc.php to lower filtering and allow more visual changes $html .= Display::tag( 'div', $row['post_text'], array('class' => 'post-body') ); $html .= '
'; $html .= '
'; $html .= '
'; $html .= '
'; // prepare the notification icon if (isset($whatsnew_post_info[$current_forum['forum_id']][$current_thread['thread_id']][$row['post_id']]) && !empty( $whatsnew_post_info[$current_forum['forum_id']][$current_thread['thread_id']][$row['post_id']] ) && !empty($whatsnew_post_info[$_GET['forum']][$row['thread_id']]) ) { $post_image = Display::return_icon('forumpostnew.gif'); } else { $post_image = Display::return_icon('forumpost.gif'); } if ($row['post_notification'] == '1' && $row['poster_id'] == $_user['user_id']) { $post_image .= Display::return_icon('forumnotification.gif', get_lang('YouWillBeNotified')); } // The post title // The check if there is an attachment $attachment_list = getAllAttachment($row['post_id']); if (!empty($attachment_list) && is_array($attachment_list)) { foreach ($attachment_list as $attachment) { $realname = $attachment['path']; $user_filename = $attachment['filename']; $html .= Display::return_icon('attachment.gif', get_lang('Attachment')); $html .= ' '.$user_filename.' '; if (($current_forum['allow_edit'] == 1 && $row['user_id'] == $_user['user_id']) || (api_is_allowed_to_edit(false, true) && !(api_is_course_coach() && $current_forum['session_id'] != $sessionId)) ) { $html .= '  ' . Display::return_icon('delete.png', get_lang('Delete'), array(), ICON_SIZE_SMALL) . '
'; } $html .= ''.$attachment['comment'].''; } } $html .= '
'; $html .= '
'; $html .= $buttonReply.' '.$buttonQuote; $html .= '
'; $html .= '
'; // The post has been displayed => it can be removed from the what's new array unset($whatsnew_post_info[$current_forum['forum_id']][$current_thread['thread_id']][$row['post_id']]); unset($whatsnew_post_info[$current_forum['forum_id']][$current_thread['thread_id']]); unset($_SESSION['whatsnew_post_info'][$current_forum['forum_id']][$current_thread['thread_id']][$row['post_id']]); unset($_SESSION['whatsnew_post_info'][$current_forum['forum_id']][$current_thread['thread_id']]); $increment++; $html .= '
'; $html .= '
'; echo $html; } } }