activity.php 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. // MAIN CODE
  18. if (api_is_allowed_to_edit(null, true)) {
  19. // HIDE
  20. if (!empty($_GET['hide'])) {
  21. $sql = "UPDATE $tool_table SET visibility=0 WHERE c_id = $course_id AND id=".$id;
  22. Database::query($sql);
  23. $show_message = Display::return_message(get_lang('ToolIsNowHidden'), 'confirmation');
  24. } elseif (!empty($_GET['restore'])) {
  25. // visibility 0,2 -> 1
  26. // REACTIVATE
  27. $sql = "UPDATE $tool_table SET visibility=1 WHERE c_id = $course_id AND id=".$id;
  28. Database::query($sql);
  29. //$show_message = Display::return_message(get_lang('ToolIsNowVisible'),'confirmation');
  30. }
  31. }
  32. // Work with data post askable by admin of course
  33. if (api_is_platform_admin()) {
  34. // Show message to confirm that a tool it to be hidden from available tools
  35. // visibility 0,1->2
  36. if (!empty($_GET['askDelete'])) {
  37. $content .='<div id="toolhide">'.get_lang('DelLk').'<br />&nbsp;&nbsp;&nbsp;
  38. <a href="'.api_get_self().'">'.get_lang('No').'</a>&nbsp;|&nbsp;
  39. <a href="'.api_get_self().'?delete=yes&id='.$id.'">'.get_lang('Yes').'</a>
  40. </div>';
  41. } elseif (isset($_GET['delete']) && $_GET['delete']) {
  42. /*
  43. * Process hiding a tools from available tools.
  44. */
  45. //where $id is set?
  46. $id = intval($id);
  47. Database::query("DELETE FROM $tool_table WHERE c_id = $course_id AND id='$id' AND added_tool=1");
  48. }
  49. }
  50. // COURSE ADMIN ONLY VIEW
  51. // Start of tools for CourseAdmins (teachers/tutors)
  52. if (api_is_allowed_to_edit(null, true) && !api_is_coach()) {
  53. $content .= '<div class="courseadminview" style="border:0px; margin-top: 0px;padding:0px;">
  54. <div class="normal-message" id="id_normal_message" style="display:none">';
  55. $content .= '<img src="'.api_get_path(WEB_PATH).'main/inc/lib/javascript/indicator.gif"/>&nbsp;&nbsp;';
  56. $content .= get_lang('PleaseStandBy');
  57. $content .= '</div>
  58. <div class="confirmation-message" id="id_confirmation_message" style="display:none"></div>
  59. </div>';
  60. if (api_get_setting('show_session_data') == 'true' && $session_id > 0) {
  61. $content .= '<div class="courseadminview">
  62. <span class="viewcaption">'.get_lang('SessionData').'</span>
  63. <table class="course_activity_home">'.CourseHome::show_session_data($session_id).'
  64. </table>
  65. </div>';
  66. }
  67. $my_list = CourseHome::get_tools_category(TOOL_AUTHORING);
  68. $items = CourseHome::show_tools_category($my_list);
  69. $content .= return_block(get_lang('Authoring'), $items);
  70. $my_list = CourseHome::get_tools_category(TOOL_INTERACTION);
  71. $list2 = CourseHome::get_tools_category(TOOL_COURSE_PLUGIN);
  72. $my_list = array_merge($my_list,$list2);
  73. $items = CourseHome::show_tools_category($my_list);
  74. $content .= return_block(get_lang('Interaction'), $items);
  75. $my_list = CourseHome::get_tools_category(TOOL_ADMIN_PLATFORM);
  76. $items = CourseHome::show_tools_category($my_list);
  77. $content .= return_block(get_lang('Administration'), $items);
  78. } elseif (api_is_coach()) {
  79. if (api_get_setting('show_session_data') == 'true' && $session_id > 0) {
  80. $content .= '<div class="row">
  81. <span class="viewcaption">'.get_lang('SessionData').'</span>
  82. <table class="course_activity_home">';
  83. $content .= CourseHome::show_session_data($session_id);
  84. $content .= '</table></div>';
  85. }
  86. $content .= '<div class="row">';
  87. $my_list = CourseHome::get_tools_category(TOOL_STUDENT_VIEW);
  88. $content .= CourseHome::show_tools_category($my_list);
  89. $content .= '</div>';
  90. } else {
  91. $my_list = CourseHome::get_tools_category(TOOL_STUDENT_VIEW);
  92. if (count($my_list) > 0) {
  93. $content .= '<div class="row">';
  94. $content .= CourseHome::show_tools_category($my_list);
  95. $content .= '</div>';
  96. }
  97. }
  98. function return_block($title, $content) {
  99. $html = '<div class="row"><div class="span12"><div class="page-header"><h3>'.$title.'</h3></div></div></div><div class="row">'.$content.'</div>';
  100. return $html;
  101. }