viewforum.php 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * These files are a complete rework of the forum. The database structure is
  5. * based on phpBB but all the code is rewritten. A lot of new functionalities
  6. * are added:
  7. * - forum categories and forums can be sorted up or down, locked or made invisible
  8. * - consistent and integrated forum administration
  9. * - forum options: are students allowed to edit their post?
  10. * moderation of posts (approval)
  11. * reply only forums (students cannot create new threads)
  12. * multiple forums per group
  13. * - sticky messages
  14. * - new view option: nested view
  15. * - quoting a message
  16. *
  17. * @Author Patrick Cool <patrick.cool@UGent.be>, Ghent University
  18. * @Copyright Ghent University
  19. * @Copyright Patrick Cool
  20. *
  21. * @package chamilo.forum
  22. */
  23. // Language files that need to be included.
  24. $language_file = array('forum', 'group');
  25. // Including the global initialization file.
  26. require_once '../inc/global.inc.php';
  27. // Notification for unauthorized people.
  28. api_protect_course_script(true);
  29. // The section (tabs).
  30. $this_section = SECTION_COURSES;
  31. // Including additional library scripts.
  32. require_once api_get_path(LIBRARY_PATH).'groupmanager.lib.php';
  33. $nameTools = get_lang('ToolForum');
  34. // Are we in a lp ?
  35. $origin = '';
  36. $origin_string = '';
  37. if (isset($_GET['origin'])) {
  38. $origin = Security::remove_XSS($_GET['origin']);
  39. $origin_string = '&amp;origin='.$origin;
  40. }
  41. /* Including necessary files */
  42. require 'forumconfig.inc.php';
  43. require_once 'forumfunction.inc.php';
  44. $userid = api_get_user_id();
  45. $userinf = api_get_user_info($userid);
  46. /* MAIN DISPLAY SECTION */
  47. /* Retrieving forum and forum category information */
  48. // We are getting all the information about the current forum and forum category.
  49. // Note pcool: I tried to use only one sql statement (and function) for this,
  50. // but the problem is that the visibility of the forum AND forum cateogory are stored in the item_property table.
  51. //$my_forum_group = isset($_GET['gidReq']) ? $_GET['gidReq'] : '';
  52. $group_id = api_get_group_id();
  53. $my_forum = isset($_GET['forum']) ? $_GET['forum'] : '';
  54. $current_forum = get_forum_information($my_forum); // Note: This has to be validated that it is an existing forum.
  55. if (empty($current_forum)) {
  56. api_not_allowed();
  57. }
  58. $current_forum_category = get_forumcategory_information($current_forum['forum_category']);
  59. if (!empty($group_id)) {
  60. //Group info & group category info
  61. $group_properties = GroupManager::get_group_properties($group_id);
  62. //$group_cat_info = GroupManager::get_category(GroupManager::get_category_from_group($group_id));
  63. //User has access in the group?
  64. $user_has_access_in_group = GroupManager::user_has_access($userid, $group_id, GROUP_TOOL_FORUM);
  65. //User is a tutor in the group? the function GroupManager::user_has_access already contains the is_tutor_of_group()
  66. //$is_tutor_group = GroupManager::is_tutor_of_group($userid, $group_id);
  67. //
  68. // the function GroupManager::user_has_access already contains the is_tutor_of_group()
  69. //$is_my_forum = GroupManager::is_user_in_group($userid, $group_id);
  70. //$group_cat_forum_visibility = $group_cat_info['forum_state'];
  71. //$group_forum_visibility = $group_properties['forum_state'];
  72. //Course
  73. if (!api_is_allowed_to_edit(false, true) AND //is a student
  74. (($current_forum_category && $current_forum_category['visibility'] == 0) OR $current_forum['visibility'] == 0 OR !$user_has_access_in_group)
  75. ) {
  76. api_not_allowed();
  77. }
  78. } else {
  79. //Course
  80. if (!api_is_allowed_to_edit(false, true) AND //is a student
  81. (($current_forum_category && $current_forum_category['visibility'] == 0) OR $current_forum['visibility'] == 0) //forum category or forum visibility is false
  82. ) {
  83. api_not_allowed();
  84. }
  85. }
  86. /* Header and Breadcrumbs */
  87. $my_search = isset($_GET['search']) ? $_GET['search'] : '';
  88. $my_action = isset($_GET['action']) ? $_GET['action'] : '';
  89. if (isset($_SESSION['gradebook'])){
  90. $gradebook = $_SESSION['gradebook'];
  91. }
  92. if (!empty($gradebook) && $gradebook == 'view') {
  93. $interbreadcrumb[] = array (
  94. 'url' => '../gradebook/'.$_SESSION['gradebook_dest'],
  95. 'name' => get_lang('ToolGradebook')
  96. );
  97. }
  98. if (!empty($_GET['gidReq'])) {
  99. $toolgroup = Database::escape_string($_GET['gidReq']);
  100. api_session_register('toolgroup');
  101. }
  102. if ($origin == 'group') {
  103. $_clean['toolgroup'] = (int)$_SESSION['toolgroup'];
  104. $interbreadcrumb[] = array('url' => '../group/group.php', 'name' => get_lang('Groups'));
  105. $interbreadcrumb[] = array('url'=>'../group/group_space.php?gidReq='.$_SESSION['toolgroup'], 'name'=> get_lang('GroupSpace').' '.$group_properties['name']);
  106. $interbreadcrumb[] = array('url' => '#', 'name' => get_lang('Forum').' '.Security::remove_XSS($current_forum['forum_title']));
  107. } else {
  108. $interbreadcrumb[] = array('url' => 'index.php?gradebook='.$gradebook.'&amp;search='.Security::remove_XSS($my_search), 'name' => get_lang('ForumCategories'));
  109. $interbreadcrumb[] = array('url' => 'viewforumcategory.php?forumcategory='.$current_forum_category['cat_id'].'&amp;search='.Security::remove_XSS(urlencode($my_search)), 'name' => prepare4display($current_forum_category['cat_title']));
  110. $interbreadcrumb[] = array('url' => '#', 'name' => Security::remove_XSS($current_forum['forum_title']));
  111. }
  112. if ($origin == 'learnpath') {
  113. include api_get_path(INCLUDE_PATH).'reduced_header.inc.php';
  114. } else {
  115. // The last element of the breadcrumb navigation is already set in interbreadcrumb, so give empty string.
  116. Display :: display_header('');
  117. //api_display_tool_title($nameTools);
  118. }
  119. /* Actions */
  120. $table_link = Database :: get_main_table(TABLE_MAIN_GRADEBOOK_LINK);
  121. // Change visibility of a forum or a forum category.
  122. if (($my_action == 'invisible' OR $my_action=='visible') AND isset($_GET['content']) AND isset($_GET['id']) AND api_is_allowed_to_edit(false, true) && api_is_allowed_to_session_edit(false, true)) {
  123. $message = change_visibility($_GET['content'], $_GET['id'], $_GET['action']); // Note: This has to be cleaned first.
  124. }
  125. // Locking and unlocking.
  126. if (($my_action == 'lock' OR $my_action == 'unlock') AND isset($_GET['content']) AND isset($_GET['id']) AND api_is_allowed_to_edit(false, true) && api_is_allowed_to_session_edit(false, true)) {
  127. $message = change_lock_status($_GET['content'], $_GET['id'], $my_action); // Note: This has to be cleaned first.
  128. }
  129. // Deleting.
  130. if ($my_action == 'delete' AND isset($_GET['content']) AND isset($_GET['id']) AND api_is_allowed_to_edit(false, true) && api_is_allowed_to_session_edit(false, true)) {
  131. $message = delete_forum_forumcategory_thread($_GET['content'], $_GET['id']); // Note: This has to be cleaned first.
  132. // Delete link
  133. /*$sql_link = 'DELETE FROM '.$table_link.' WHERE ref_id='.intval($_GET['id']).' and type=5 and course_code="'.api_get_course_id().'";';
  134. Database::query($sql_link);*/
  135. require_once api_get_path(SYS_CODE_PATH).'gradebook/lib/gradebook_functions.inc.php';
  136. $link_id = is_resource_in_course_gradebook(api_get_course_id(), 5 , intval($_GET['id']), api_get_session_id());
  137. if ($link_id !== false) {
  138. remove_resource_from_course_gradebook($link_id);
  139. }
  140. }
  141. // Moving.
  142. if ($my_action == 'move' AND isset($_GET['thread']) AND api_is_allowed_to_edit(false, true) && api_is_allowed_to_session_edit(false, true)) {
  143. $message = move_thread_form();
  144. }
  145. // Notification.
  146. if ($my_action == 'notify' AND isset($_GET['content']) AND isset($_GET['id']) && api_is_allowed_to_session_edit(false, true)) {
  147. $return_message = set_notification($_GET['content'], $_GET['id']);
  148. Display :: display_confirmation_message($return_message, false);
  149. }
  150. // Student list
  151. if ($my_action == 'liststd' AND isset($_GET['content']) AND isset($_GET['id']) AND api_is_allowed_to_edit(null, true)) {
  152. switch($_GET['list']) {
  153. case 'qualify':
  154. $student_list = get_thread_users_qualify($_GET['id'], api_get_course_int_id());
  155. $nrorow3 = -2;
  156. break;
  157. case 'notqualify':
  158. $student_list = get_thread_users_not_qualify($_GET['id'], api_get_course_int_id());
  159. $nrorow3 = -2;
  160. break;
  161. default:
  162. $student_list = get_thread_users_details($_GET['id'], api_get_course_int_id());
  163. $nrorow3 = Database::num_rows($student_list);
  164. break;
  165. }
  166. $table_list = '<p><br /><h3>'.get_lang('ThreadUsersList').': '.get_name_thread_by_id($_GET['id']).'</h3>';
  167. if ($nrorow3 > 0 || $nrorow3 == -2) {
  168. $url = 'cidReq='.Security::remove_XSS($_GET['cidReq']).'&amp;forum='.Security::remove_XSS($my_forum).'&amp;action='.Security::remove_XSS($_GET['action']).'&amp;content='.Security::remove_XSS($_GET['content'],STUDENT).'&amp;id='.Security::remove_XSS($_GET['id']);
  169. $table_list .= '<br />
  170. <div style="width:50%">
  171. <table class="data_table" border="0">
  172. <tr>
  173. <th height="22"><a href="viewforum.php?'.$url.'&amp;origin='.$origin.'&amp;list=all">'.get_lang('AllStudents').'</a></th>
  174. <th><a href="viewforum.php?'.$url.'&amp;origin='.$origin.'&amp;list=qualify">'.get_lang('StudentsQualified').'</a></th>
  175. <th><a href="viewforum.php?'.$url.'&amp;origin='.$origin.'&amp;list=notqualify">'.get_lang('StudentsNotQualified').'</a></th>
  176. </tr>
  177. </table></div>
  178. <div style="border:1px solid gray; width:99%; margin-top:5px; padding:4px; float:left">
  179. ';
  180. $icon_qualify = 'blog_new.gif';
  181. $table_list .= '<center><br /><table class="data_table" style="width:50%">';
  182. // The column headers (TODO: Make this sortable).
  183. $table_list .= '<tr >';
  184. $table_list .= '<th height="24">'.get_lang('NamesAndLastNames').'</th>';
  185. if ($_GET['list'] == 'qualify') {
  186. $table_list.= '<th>'.get_lang('Qualification').'</th>';
  187. }
  188. if (api_is_allowed_to_edit(null, true)) {
  189. $table_list.= '<th>'.get_lang('Qualify').'</th>';
  190. }
  191. $table_list .= '</tr>';
  192. $max_qualify = show_qualify('2', $_GET['cidReq'], $my_forum, $userid, $_GET['id']);
  193. $counter_stdlist = 0;
  194. if (Database::num_rows($student_list) > 0) {
  195. while ($row_student_list=Database::fetch_array($student_list)) {
  196. if ($counter_stdlist % 2 == 0) {
  197. $class_stdlist = 'row_odd';
  198. } else {
  199. $class_stdlist = 'row_even';
  200. }
  201. $name_user_theme = api_get_person_name($row_student_list['firstname'], $row_student_list['lastname']);
  202. $table_list .= '<tr class="'.$class_stdlist.'"><td><a href="../user/userInfo.php?uInfo='.$row_student_list['user_id'].'&amp;tipo=sdtlist&amp;'.api_get_cidreq().'&amp;gidReq='.Security::remove_XSS($_GET['gidReq']).'&amp;forum='.Security::remove_XSS($my_forum).$origin_string.'">'.$name_user_theme.'</a></td>';
  203. if ($_GET['list'] == 'qualify') {
  204. $table_list .= '<td>'.$row_student_list['qualify'].'/'.$max_qualify.'</td>';
  205. }
  206. if (api_is_allowed_to_edit(null, true)) {
  207. $current_qualify_thread = show_qualify('1', $_GET['cidReq'], $my_forum, $row_student_list['user_id'], $_GET['id']);
  208. $table_list .= '<td><a href="forumqualify.php?'.api_get_cidreq().'&amp;gidReq='.Security::remove_XSS($_GET['gidReq']).'&amp;forum='.Security::remove_XSS($my_forum).'&amp;thread='.Security::remove_XSS($_GET['id']).'&amp;user='.$row_student_list['user_id'].'&amp;user_id='.$row_student_list['user_id'].'&amp;idtextqualify='.$current_qualify_thread.'&amp;origin='.$origin.'">'.Display::return_icon($icon_qualify, get_lang('Qualify')).'</a></td></tr>';
  209. }
  210. $counter_stdlist++;
  211. }
  212. } else {
  213. if ($_GET['list'] == 'qualify') {
  214. $table_list .= '<tr><td colspan="2">'.get_lang('ThereIsNotQualifiedLearners').'</td></tr>';
  215. } else {
  216. $table_list .= '<tr><td colspan="2">'.get_lang('ThereIsNotUnqualifiedLearners').'</td></tr>';
  217. }
  218. }
  219. $table_list .= '</table></center>';
  220. $table_list .= '<br /></div>';
  221. } else {
  222. $table_list .= get_lang('NoParticipation');
  223. }
  224. }
  225. if ($origin == 'learnpath') {
  226. echo '<div style="height:15px">&nbsp;</div>';
  227. }
  228. /* Display the action messages */
  229. if (!empty($message)) {
  230. Display :: display_confirmation_message($message);
  231. }
  232. /* Action links */
  233. echo '<div class="actions">';
  234. if ($origin != 'learnpath') {
  235. if ($origin=='group') {
  236. echo '<a href="../group/group_space.php?'.api_get_cidreq().'&amp;gidReq='.Security::remove_XSS($_GET['gidReq']).'&amp;gradebook='.$gradebook.'">'.Display::return_icon('back.png',get_lang('BackTo').' '.get_lang('Groups'),'',ICON_SIZE_MEDIUM).'</a>';
  237. } else {
  238. echo '<span style="float:right;">'.search_link().'</span>';
  239. echo '<a href="index.php">'.Display::return_icon('back.png', get_lang('BackToForumOverview'), '', ICON_SIZE_MEDIUM).'</a>';
  240. }
  241. }
  242. // The link should appear when
  243. // 1. the course admin is here
  244. // 2. the course member is here and new threads are allowed
  245. // 3. a visitor is here and new threads AND allowed AND anonymous posts are allowed
  246. if (api_is_allowed_to_edit(false, true) OR ($current_forum['allow_new_threads'] == 1 AND isset($_user['user_id'])) OR ($current_forum['allow_new_threads'] == 1 AND !isset($_user['user_id']) AND $current_forum['allow_anonymous'] == 1)) {
  247. if ($current_forum['locked'] <> 1 AND $current_forum['locked'] <> 1) {
  248. if (!api_is_anonymous()) {
  249. if ($my_forum == strval(intval($my_forum))) {
  250. echo '<a href="newthread.php?'.api_get_cidreq().'&amp;gidReq='.Security::remove_XSS($_GET['gidReq']).'&amp;forum='.Security::remove_XSS($my_forum).$origin_string.'">'.Display::return_icon('new_thread.png',get_lang('NewTopic'),'',ICON_SIZE_MEDIUM).'</a>';
  251. } else {
  252. $my_forum = strval(intval($my_forum));
  253. echo '<a href="newthread.php?'.api_get_cidreq().'&amp;gidReq='.Security::remove_XSS($_GET['gidReq']).'&amp;forum='.$my_forum.$origin_string.'">'.Display::return_icon('new_thread.png',get_lang('NewTopic'),'',ICON_SIZE_MEDIUM).'</a>';
  254. }
  255. }
  256. } else {
  257. echo get_lang('ForumLocked');
  258. }
  259. }
  260. echo '</div>';
  261. /* Display */
  262. echo '<table class="forum_table" >';
  263. // The current forum
  264. if ($origin != 'learnpath') {
  265. echo '<thead><tr><th class="forum_head" colspan="7">';
  266. if (!empty ($current_forum_category['cat_title'])) {
  267. //echo '<span class="forum_low_description">'.prepare4display($current_forum_category['cat_title'])."</span><br />";
  268. }
  269. echo '<span class="forum_title">'.prepare4display($current_forum['forum_title']).'</span>';
  270. if (!empty ($current_forum['forum_comment'])) {
  271. echo '<br /><span class="forum_description">'.prepare4display($current_forum['forum_comment']).'</span>';
  272. }
  273. echo '</th></tr></thead>';
  274. }
  275. // The column headers (TODO: Make this sortable).
  276. echo '<tr class="forum_threadheader">';
  277. echo '<td></td>';
  278. echo '<td>'.get_lang('Title').'</td>';
  279. echo '<td>'.get_lang('Replies').'</td>';
  280. echo '<td>'.get_lang('Views').'</td>';
  281. echo '<td>'.get_lang('Author').'</td>';
  282. echo '<td>'.get_lang('LastPost').'</td>';
  283. echo '<td>'.get_lang('Actions').'</td>';
  284. echo '</tr>';
  285. // Getting al the threads
  286. $threads = get_threads($my_forum); // Note: This has to be cleaned first.
  287. $whatsnew_post_info = isset($_SESSION['whatsnew_post_info']) ? $_SESSION['whatsnew_post_info'] : null;
  288. $course_id = api_get_course_int_id();
  289. $counter = 0;
  290. if (is_array($threads)) {
  291. foreach ($threads as $row) {
  292. // Thread who have no replies yet and the only post is invisible should not be displayed to students.
  293. if (api_is_allowed_to_edit(false, true) OR !($row['thread_replies'] == '0' AND $row['visible'] == '0')) {
  294. if ($counter % 2 == 0) {
  295. $class = 'row_odd';
  296. } else {
  297. $class = 'row_even';
  298. }
  299. echo "<tr class=\"$class\">";
  300. echo '<td>';
  301. $my_whatsnew_post_info = isset($whatsnew_post_info[$my_forum][$row['thread_id']]) ? $whatsnew_post_info[$my_forum][$row['thread_id']] : null;
  302. if (is_array($my_whatsnew_post_info) && !empty($my_whatsnew_post_info)) {
  303. echo Display::return_icon('forumthread.gif');
  304. } else {
  305. echo Display::return_icon('forumthread.gif');
  306. }
  307. if ($row['thread_sticky'] == 1) {
  308. echo Display::return_icon('exclamation.gif');
  309. }
  310. echo '</td>';
  311. echo '<td>';
  312. echo '<a href="viewthread.php?'.api_get_cidreq().'&amp;gidReq='.Security::remove_XSS($_GET['gidReq']).'&amp;gradebook='.Security::remove_XSS($_GET['gradebook']).'&amp;forum='.Security::remove_XSS($my_forum).'&amp;origin='.$origin.'&amp;thread='.$row['thread_id'].$origin_string.'&amp;search='.Security::remove_XSS(urlencode($my_search)).'" '.class_visible_invisible($row['visibility']).'>'.prepare4display($row['thread_title']).'</a></td>';
  313. echo '<td>'.$row['thread_replies'].'</td>';
  314. echo '<td>'.$row['thread_views'].'</td>';
  315. // display the author name
  316. $tab_poster_info = api_get_user_info($row['user_id']);
  317. $poster_username = sprintf(get_lang('LoginX'), $tab_poster_info['username']);
  318. if ($origin != 'learnpath') {
  319. echo '<td>'.display_user_link($row['user_id'], api_get_person_name($row['firstname'], $row['lastname']), '', $poster_username).'</td>';
  320. } else {
  321. echo '<td>'.Display::tag('span', api_get_person_name($row['firstname'], $row['lastname']), array("title"=>api_htmlentities($poster_username, ENT_QUOTES))).'</td>';
  322. }
  323. // display the last post name
  324. // if ($row['user_id'] == '0') {
  325. // $name = prepare4display($row['thread_poster_name']);
  326. // } else {
  327. // $name = api_get_person_name($row['firstname'], $row['lastname']);
  328. // }
  329. if ($row['last_poster_user_id'] == '0') {
  330. $name = $row['poster_name'];
  331. $last_poster_username = "";
  332. } else {
  333. $name = api_get_person_name($row['last_poster_firstname'], $row['last_poster_lastname']);
  334. $tab_last_poster_info = api_get_user_info($row['last_poster_user_id']);
  335. $last_poster_username = sprintf(get_lang('LoginX'), $tab_last_poster_info['username']);
  336. }
  337. // If the last post is invisible and it is not the teacher who is looking then we have to find the last visible post of the thread.
  338. if (($row['visible'] == '1' OR api_is_allowed_to_edit(false, true)) && $origin != 'learnpath') {
  339. $last_post = api_convert_and_format_date($row['thread_date']).' '.get_lang('By').' '.display_user_link($row['last_poster_user_id'], $name, '', $last_poster_username);
  340. } elseif ($origin != 'learnpath') {
  341. $last_post_sql = "SELECT post.*, user.firstname, user.lastname, user.username FROM $table_posts post, $table_users user WHERE post.poster_id=user.user_id AND visible='1' AND thread_id='".$row['thread_id']."' AND post.c_id=".api_get_course_int_id()." ORDER BY post_id DESC";
  342. $last_post_result = Database::query($last_post_sql);
  343. $last_post_row = Database::fetch_array($last_post_result);
  344. $name = api_get_person_name($last_post_row['firstname'], $last_post_row['lastname']);
  345. $last_post_info_username = sprintf(get_lang('LoginX'), $last_post_row['username']);
  346. $last_post = api_convert_and_format_date($last_post_row['post_date']).' '.get_lang('By').' '.display_user_link($last_post_row['poster_id'], $name, '', $last_post_info_username);
  347. } else {
  348. $last_post_sql = "SELECT post.*, user.firstname, user.lastname, user.username FROM $table_posts post, $table_users user WHERE post.poster_id=user.user_id AND visible='1' AND thread_id='".$row['thread_id']."' AND post.c_id=".api_get_course_int_id()." ORDER BY post_id DESC";
  349. $last_post_result = Database::query($last_post_sql);
  350. $last_post_row = Database::fetch_array($last_post_result);
  351. $last_post_info_username = sprintf(get_lang('LoginX'), $last_post_row['username']);
  352. $name = api_get_person_name($last_post_row['firstname'], $last_post_row['lastname']);
  353. $last_post = api_convert_and_format_date($last_post_row['post_date']).' '.get_lang('By').' '.Display::tag('span', $name, array("title"=>api_htmlentities($last_post_info_username, ENT_QUOTES)));
  354. }
  355. echo '<td>'.$last_post.'</td>';
  356. echo '<td>';
  357. // Get attachment id.
  358. $attachment_list = get_attachment($row['post_id']);
  359. $id_attach = !empty($attachment_list) ? $attachment_list['id'] : '';
  360. $sql_post_id = "SELECT post_id FROM $table_posts WHERE c_id = $course_id AND post_title='".Database::escape_string($row['thread_title'])."'";
  361. $result_post_id = Database::query($sql_post_id);
  362. $row_post_id = Database::fetch_array($result_post_id);
  363. if ($origin != 'learnpath') {
  364. if (api_is_allowed_to_edit(false, true) && !(api_is_course_coach() && $current_forum['session_id'] != $_SESSION['id_session'])) {
  365. echo '<a href="editpost.php?'.api_get_cidreq().'&amp;forum='.Security::remove_XSS($my_forum).'&amp;thread='.Security::remove_XSS($row['thread_id']).'&amp;post='.$row_post_id['post_id'].'&amp;gidReq='.$_SESSION['toolgroup'].'&amp;origin='.$origin.'&amp;id_attach='.$id_attach.'">'.Display::return_icon('edit.png', get_lang('Edit'), array(), ICON_SIZE_SMALL).'</a>';
  366. echo '<a href="'.api_get_self().'?'.api_get_cidreq().'&amp;forum='.Security::remove_XSS($my_forum).'&amp;action=delete&amp;content=thread&amp;gidReq='.$_SESSION['toolgroup'].'&amp;id='.$row['thread_id'].$origin_string."\" onclick=\"javascript:if(!confirm('".addslashes(api_htmlentities(get_lang('DeleteCompleteThread'), ENT_QUOTES))."')) return false;\">".Display::return_icon('delete.png', get_lang('Delete'), array(), ICON_SIZE_SMALL).'</a>';
  367. display_visible_invisible_icon('thread', $row['thread_id'], $row['visibility'], array('forum' => $my_forum, 'origin' => $origin, 'gidReq' => $_SESSION['toolgroup']));
  368. display_lock_unlock_icon('thread', $row['thread_id'], $row['locked'], array('forum' => $my_forum, 'origin' => $origin, 'gidReq' => $_SESSION['toolgroup']));
  369. echo '<a href="viewforum.php?'.api_get_cidreq().'&amp;forum='.Security::remove_XSS($my_forum).'&amp;action=move&amp;gidReq='.$_SESSION['toolgroup'].'&amp;thread='.$row['thread_id'].$origin_string.'">'.Display::return_icon('move.png', get_lang('MoveThread'), array(), ICON_SIZE_SMALL).'</a>';
  370. }
  371. }
  372. $iconnotify = 'send_mail.gif';
  373. if (is_array(isset($_SESSION['forum_notification']['thread']) ? $_SESSION['forum_notification']['thread'] : null)) {
  374. if (in_array($row['thread_id'], $_SESSION['forum_notification']['thread'])) {
  375. $iconnotify = 'send_mail_checked.gif';
  376. }
  377. }
  378. $icon_liststd = 'user.png';
  379. if (!api_is_anonymous() && api_is_allowed_to_session_edit(false, true)) {
  380. echo '<a href="'.api_get_self().'?'.api_get_cidreq().'&amp;forum='.Security::remove_XSS($my_forum).'&amp;origin='.$origin.'&amp;action=notify&amp;content=thread&amp;gidReq='.$_SESSION['toolgroup'].'&amp;id='.$row['thread_id'].'">'.Display::return_icon($iconnotify, get_lang('NotifyMe')).'</a>';
  381. }
  382. if (api_is_allowed_to_edit(null,true) && $origin != 'learnpath') {
  383. echo '<a href="'.api_get_self().'?'.api_get_cidreq().'&amp;forum='.Security::remove_XSS($my_forum).'&amp;origin='.$origin.'&amp;action=liststd&amp;content=thread&amp;gidReq='.$_SESSION['toolgroup'].'&amp;id='.$row['thread_id'].'">'.Display::return_icon($icon_liststd,get_lang('StudentList'), array(), ICON_SIZE_SMALL).'</a>';
  384. }
  385. echo '</td></tr>';
  386. }
  387. $counter++;
  388. }
  389. }
  390. echo '</table>';
  391. echo isset($table_list) ? $table_list : '';
  392. /* FOOTER */
  393. if ($origin != 'learnpath') {
  394. Display :: display_footer();
  395. }