123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- <?php
- require_once __DIR__.'/../inc/global.inc.php';
- $current_course_tool = TOOL_FORUM;
- $this_section = SECTION_COURSES;
- api_protect_course_script(true);
- require_once 'forumconfig.inc.php';
- require_once 'forumfunction.inc.php';
- $nameTools = get_lang('Forum');
- $forumUrl = api_get_path(WEB_CODE_PATH).'forum/';
- $origin = api_get_origin();
- $my_search = null;
- $gradebook = null;
- $current_thread = get_thread_information($_GET['forum'], $_GET['thread']);
- $current_forum = get_forum_information($current_thread['forum_id']);
- $current_forum_category = get_forumcategory_information($current_forum['forum_category']);
- $whatsnew_post_info = isset($_SESSION['whatsnew_post_info']) ? $_SESSION['whatsnew_post_info'] : null;
- if (!empty($_GET['gradebook']) && $_GET['gradebook'] == 'view') {
- $_SESSION['gradebook'] = Security::remove_XSS($_GET['gradebook']);
- $gradebook = $_SESSION['gradebook'];
- }
- if (!empty($gradebook) && $gradebook == 'view') {
- $interbreadcrumb[] = array(
- 'url' => '../gradebook/'.$_SESSION['gradebook_dest'],
- 'name' => get_lang('ToolGradebook')
- );
- }
- $groupId = api_get_group_id();
- $group_properties = GroupManager::get_group_properties($groupId);
- $sessionId = api_get_session_id();
- $ajaxURL = api_get_path(WEB_AJAX_PATH).'forum.ajax.php?'.api_get_cidreq().'&a=change_post_status';
- $htmlHeadXtra[] = '<script>
- $(function() {
- $("span").on("click", ".change_post_status", function() {
- var updateDiv = $(this).parent();
- var postId = updateDiv.attr("id");
-
- $.ajax({
- url: "'.$ajaxURL.'&post_id="+postId,
- type: "GET",
- success: function(data) {
- updateDiv.html(data);
- }
- });
- });
- });
-
- </script>';
- if (!empty($groupId)) {
- $interbreadcrumb[] = array(
- 'url' => api_get_path(WEB_CODE_PATH).'group/group.php?'.api_get_cidreq(),
- 'name' => get_lang('Groups')
- );
- $interbreadcrumb[] = array(
- 'url' => api_get_path(WEB_CODE_PATH).'group/group_space.php?'.api_get_cidreq(),
- 'name' => get_lang('GroupSpace').' '.$group_properties['name']
- );
- $interbreadcrumb[] = array(
- 'url' => api_get_path(WEB_CODE_PATH).'forum/viewforum.php?forum='.intval($_GET['forum']).'&'.api_get_cidreq()."&search=".Security::remove_XSS(urlencode($my_search)),
- 'name' => Security::remove_XSS($current_forum['forum_title'])
- );
- $interbreadcrumb[] = array(
- 'url' => api_get_path(WEB_CODE_PATH).'forum/viewthread.php?forum='.intval($_GET['forum']).'&'.api_get_cidreq().'&thread='.intval($_GET['thread']),
- 'name' => Security::remove_XSS($current_thread['thread_title'])
- );
- Display::display_header('');
- } else {
- $my_search = isset($_GET['search']) ? $_GET['search'] : '';
- if ($origin == 'learnpath') {
- Display::display_reduced_header();
- } else {
- $interbreadcrumb[] = array(
- 'url' => api_get_path(WEB_CODE_PATH).'forum/index.php?'.api_get_cidreq().'&search='.Security::remove_XSS(urlencode($my_search)),
- 'name' => $nameTools
- );
- $interbreadcrumb[] = array(
- 'url' => api_get_path(WEB_CODE_PATH).'forum/viewforumcategory.php?forumcategory='.$current_forum_category['cat_id']."&search=".Security::remove_XSS(urlencode($my_search)),
- 'name' => Security::remove_XSS($current_forum_category['cat_title'])
- );
- $interbreadcrumb[] = array(
- 'url' => api_get_path(WEB_CODE_PATH).'forum/viewforum.php?'.api_get_cidreq().'&forum='.intval($_GET['forum'])."&search=".Security::remove_XSS(urlencode($my_search)),
- 'name' => Security::remove_XSS($current_forum['forum_title'])
- );
- $interbreadcrumb[] = array(
- 'url' => '#', 'name' => Security::remove_XSS($current_thread['thread_title'])
- );
- $message = isset($message) ? $message : '';
-
- Display::display_header('');
- }
- }
- if (!api_is_allowed_to_edit(false, true) &&
- ($current_forum['visibility'] == 0 || $current_thread['visibility'] == 0)
- ) {
- api_not_allowed(false);
- }
- $my_action = isset($_GET['action']) ? $_GET['action'] : '';
- if ($my_action == 'delete' &&
- isset($_GET['content']) &&
- isset($_GET['id']) &&
- (api_is_allowed_to_edit(false, true) ||
- (isset($group_properties['iid']) && GroupManager::is_tutor_of_group(api_get_user_id(), $group_properties)))
- ) {
- $message = delete_post($_GET['id']);
- }
- if (($my_action == 'invisible' || $my_action == 'visible') &&
- isset($_GET['id']) &&
- (api_is_allowed_to_edit(false, true) ||
- (isset($group_properties['iid']) && GroupManager::is_tutor_of_group(api_get_user_id(), $group_properties)))
- ) {
- $message = approve_post($_GET['id'], $_GET['action']);
- }
- if ($my_action == 'move' && isset($_GET['post'])) {
- $message = move_post_form();
- }
- $my_message = isset($message) ? $message : '';
- if ($my_message) {
- Display::display_confirmation_message(get_lang($my_message));
- }
- if ($my_message != 'PostDeletedSpecial') {
-
-
- increase_thread_view($_GET['thread']);
-
- if ($origin == 'learnpath') {
- echo '<div style="height:15px"> </div>';
- }
- echo '<div class="actions">';
- echo '<span style="float:right;">'.search_link().'</span>';
- if ($origin != 'learnpath') {
- echo '<a href="'.$forumUrl.'viewforum.php?forum='
- . intval($_GET['forum']).'&'.api_get_cidreq().'">'
- . Display::return_icon('back.png', get_lang('BackToForum'), '', ICON_SIZE_MEDIUM).'</a>';
- }
-
-
-
- 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)) {
- echo '<a href="'.$forumUrl.'reply.php?'.api_get_cidreq().'&forum='
- . intval($_GET['forum']).'&thread='
- . intval($_GET['thread']).'&action=replythread">'
- . Display::return_icon('reply_thread.png', get_lang('ReplyToThread'), '', ICON_SIZE_MEDIUM)
- . '</a>';
- }
-
- if ((
- api_is_allowed_to_edit(false, true) &&
- !(api_is_course_coach() && $current_forum['session_id'] != $sessionId)
- ) ||
- ($current_forum['allow_new_threads'] == 1 && isset($_user['user_id'])) ||
- ($current_forum['allow_new_threads'] == 1 && !isset($_user['user_id']) && $current_forum['allow_anonymous'] == 1)
- ) {
- if ($current_forum['locked'] <> 1 && $current_forum['locked'] <> 1) {
- echo ' ';
- } else {
- echo get_lang('ForumLocked');
- }
- }
- }
- }
-
- if ($origin != 'learnpath') {
- $my_url = '<a href="'.$forumUrl.'viewthread.php?'.api_get_cidreq().'&'.api_get_cidreq()
- . '&forum='.intval($_GET['forum']).'&thread='.intval($_GET['thread'])
- . '&search='.Security::remove_XSS(urlencode($my_search));
- echo $my_url.'&view=flat">'
- . Display::return_icon('forum_listview.png', get_lang('FlatView'), null, ICON_SIZE_MEDIUM)
- . '</a>';
- echo $my_url.'&view=nested">'
- . Display::return_icon('forum_nestedview.png', get_lang('NestedView'), null, ICON_SIZE_MEDIUM)
- . '</a>';
- }
- $my_url = null;
- echo '</div> ';
-
- if (!isset($_SESSION['view'])) {
- $viewMode = $current_forum['default_view'];
- } else {
- $viewMode = $_SESSION['view'];
- }
- $whiteList = array('flat', 'threaded', 'nested');
- if (isset($_GET['view']) && in_array($_GET['view'], $whiteList)) {
- $viewMode = $_GET['view'];
- $_SESSION['view'] = $viewMode;
- }
- if (empty($viewMode)) {
- $viewMode = 'flat';
- }
- if ($current_thread['thread_peer_qualify'] == 1) {
- echo Display::return_message(get_lang('ForumThreadPeerScoringStudentComment'), 'info');
- }
- switch ($viewMode) {
- case 'threaded':
-
- case 'nested':
- include_once 'viewthread_nested.inc.php';
- break;
- case 'flat':
-
- default:
- include_once 'viewthread_flat.inc.php';
- break;
- }
- }
- if ($origin != 'learnpath') {
- Display::display_footer();
- }
|