vertical_activity.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * HOME PAGE FOR EACH COURSE
  5. *
  6. * This page, included in every course's index.php is the home
  7. * page. To make administration simple, the teacher edits his
  8. * course from the home page. Only the login detects that the
  9. * visitor is allowed to activate, deactivate home page links,
  10. * access to the teachers tools (statistics, edit forums...).
  11. *
  12. * @package chamilo.course_home
  13. */
  14. $id = isset($_GET['id']) ? intval($_GET['id']) : null;
  15. $course_id = api_get_course_int_id();
  16. $session_id = api_get_session_id();
  17. if (api_is_allowed_to_edit(null, true)) {
  18. // HIDE
  19. if (!empty($_GET['hide'])) { // visibility 1 -> 0
  20. $sql = "UPDATE $tool_table SET visibility=0 WHERE c_id = $course_id AND id='".$id."'";
  21. Database::query($sql);
  22. $show_message = Display::return_message(get_lang('ToolIsNowHidden'), 'confirmation');
  23. } elseif (!empty($_GET['restore'])) {
  24. // visibility 0,2 -> 1
  25. // REACTIVATE
  26. $sql = "UPDATE $tool_table SET visibility=1 WHERE c_id = $course_id AND id='".$id."'";
  27. Database::query($sql);
  28. $show_message = Display::return_message(get_lang('ToolIsNowVisible'), 'confirmation');
  29. }
  30. }
  31. // Work with data post askable by admin of course
  32. if (api_is_platform_admin()) {
  33. // Show message to confirm that a tool it to be hidden from available tools
  34. // visibility 0,1->2
  35. if (!empty($_GET['askDelete'])) {
  36. $content .= '<div id="toolhide">'.get_lang('DelLk').'<br />&nbsp;&nbsp;&nbsp;
  37. <a href="'.api_get_self().'">'.get_lang('No').'</a>&nbsp;|&nbsp;
  38. <a href="'.api_get_self().'?delete=yes&id='.$id.'">'.get_lang('Yes').'</a>
  39. </div>';
  40. } elseif (isset($_GET['delete']) && $_GET['delete']) {
  41. /*
  42. * Process hiding a tools from available tools.
  43. */
  44. //where $id is set?
  45. $id = intval($id);
  46. Database::query("DELETE FROM $tool_table WHERE c_id = $course_id AND id='$id' AND added_tool=1");
  47. }
  48. }
  49. // COURSE ADMIN ONLY VIEW
  50. // Start of tools for CourseAdmins (teachers/tutors)
  51. if (api_is_allowed_to_edit(null, true) && !api_is_coach()) {
  52. $content .= '<div class="courseadminview" style="border:0px; margin-top: 0px;padding:5px;">
  53. <div class="normal-message" id="id_normal_message" style="display:none">';
  54. $content .= '<img src="'.api_get_path(WEB_PATH).'main/inc/lib/javascript/indicator.gif"/>&nbsp;&nbsp;';
  55. $content .= get_lang('PleaseStandBy');
  56. $content .= '</div>
  57. <div class="confirmation-message" id="id_confirmation_message" style="display:none"></div></div>';
  58. $content .= '<div id="activity-3col">';
  59. if (api_get_setting('show_session_data') == 'true' && $session_id > 0) {
  60. $content .= '<div class="courseadminview-activity-3col"><span class="viewcaption">'.get_lang('SessionData').'</span>
  61. <table width="100%">'.CourseHome::show_session_data($session_id).'</table>
  62. </div>';
  63. }
  64. $content .= '<div class="courseadminview-activity-3col"><span class="viewcaption">'.get_lang('Authoring').'</span>';
  65. $my_list = CourseHome::get_tools_category(TOOL_AUTHORING);
  66. $content .= CourseHome::show_tools_category($my_list);
  67. $content .= '</div>';
  68. $content .= '<div class="courseadminview-activity-3col"><span class="viewcaption">'.get_lang('Interaction').'</span>';
  69. $my_list = CourseHome::get_tools_category(TOOL_INTERACTION);
  70. $content .= CourseHome::show_tools_category($my_list);
  71. $content .= '</div>';
  72. $content .= '<div class="courseadminview-activity-3col"><span class="viewcaption">'.get_lang('Administration').'</span>';
  73. $my_list = CourseHome::get_tools_category(TOOL_ADMIN_PLATFORM);
  74. $content .= CourseHome::show_tools_category($my_list);
  75. $content .= '</div>';
  76. } elseif (api_is_coach()) {
  77. if (api_get_setting('show_session_data') == 'true' && $session_id > 0) {
  78. $content .= '<div class="courseadminview-activity-3col"><span class="viewcaption">'.get_lang('SessionData').'</span>
  79. <table width="100%">';
  80. $content .= CourseHome::show_session_data($session_id);
  81. $content .= '</table></div>';
  82. }
  83. $content .= '<div class="Authoringview">';
  84. $my_list = CourseHome::get_tools_category(TOOL_STUDENT_VIEW);
  85. $content .= CourseHome::show_tools_category($my_list);
  86. $content .= '</div>';
  87. // TOOLS AUTHORING
  88. } else {
  89. $my_list = CourseHome::get_tools_category(TOOL_STUDENT_VIEW);
  90. if (count($my_list) > 0) {
  91. $content .= '<div class="course-student-view-activity-3col">';
  92. //ordering by get_lang name
  93. $order_tool_list = array();
  94. foreach ($my_list as $key => $new_tool) {
  95. $tool_name = CourseHome::translate_tool_name($new_tool);
  96. $order_tool_list [$key] = $tool_name;
  97. }
  98. natsort($order_tool_list);
  99. $my_temp_tool_array = array();
  100. foreach ($order_tool_list as $key => $new_tool) {
  101. $my_temp_tool_array[] = $my_list[$key];
  102. }
  103. $my_list = $my_temp_tool_array;
  104. $i = 0;
  105. foreach ($my_list as $new_tool) {
  106. if ($i >= 10) {
  107. $my_list2[] = $new_tool;
  108. } else {
  109. $my_list1[] = $new_tool;
  110. }
  111. $i++;
  112. }
  113. $content .= CourseHome::show_tools_category($my_list1);
  114. $content .= CourseHome::show_tools_category($my_list2);
  115. $content .= '</div>';
  116. }
  117. }
  118. $content .= '</div>';