copy_survey.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.backup
  5. */
  6. require_once __DIR__.'/../inc/global.inc.php';
  7. $current_course_tool = TOOL_COURSE_MAINTENANCE;
  8. api_protect_course_script(true);
  9. // Notice for unauthorized people.
  10. if (!api_is_allowed_to_edit()) {
  11. api_not_allowed(true);
  12. }
  13. // Breadcrumbs
  14. $interbreadcrumb[] = [
  15. 'url' => api_get_path(WEB_CODE_PATH).'survey/survey_list.php?'.api_get_cidreq(),
  16. 'name' => get_lang('SurveyList'),
  17. ];
  18. // The section (for the tabs)
  19. $this_section = SECTION_COURSES;
  20. $surveyId = isset($_GET['survey_id']) ? (int) $_GET['survey_id'] : 0;
  21. if (empty($surveyId)) {
  22. api_not_allowed(true);
  23. }
  24. $survey = SurveyManager::get_survey($surveyId);
  25. if (empty($survey)) {
  26. api_not_allowed(true);
  27. }
  28. $surveyTitle = str_replace('&nbsp;', '', strip_tags($survey['title'].' ('.$survey['code'].') '));
  29. $form = new FormValidator('copy_survey', 'post', api_get_self().'?survey_id='.$surveyId.'&'.api_get_cidreq());
  30. $form->addElement(
  31. 'text',
  32. 'survey_title',
  33. get_lang('Survey'),
  34. ['value' => $surveyTitle, 'disabled' => 'disabled']
  35. );
  36. $form->addSelectAjax(
  37. 'destination_course',
  38. get_lang('SelectDestinationCourse'),
  39. null,
  40. [
  41. 'url' => api_get_path(WEB_AJAX_PATH).'course.ajax.php?a=get_my_courses_and_sessions&'.api_get_cidreq(),
  42. ]
  43. );
  44. $form->addButtonCopy(get_lang('CopySurvey'));
  45. // Add Security token
  46. $token = Security::get_existing_token();
  47. $form->addElement('hidden', 'sec_token');
  48. $form->setConstants(['sec_token' => $token]);
  49. // If a CourseSelectForm is posted or we should copy all resources, then copy them
  50. if ($form->validate() && Security::check_token('post')) {
  51. // Clear token
  52. Security::clear_token();
  53. $values = $form->getSubmitValues();
  54. $courseKey = $values['destination_course'];
  55. $courseParts = explode('_', $courseKey);
  56. $courseId = $courseParts[0];
  57. $sessionId = $courseParts[1];
  58. // Copy the survey to the target course
  59. $surveyCopyId = SurveyManager::copySurveySession($surveyId, $courseId, $sessionId);
  60. if ($surveyCopyId) {
  61. // Empty the copied survey
  62. SurveyManager::emptySurveyFromId($surveyCopyId);
  63. Display::addFlash(Display::return_message(get_lang('SurveyCopied')));
  64. } else {
  65. Display::addFlash(Display::return_message(get_lang('ThereWasAnError'), 'warning'));
  66. }
  67. header('Location: '.api_get_self().'?'.api_get_cidreq().'&survey_id='.$surveyId);
  68. exit;
  69. }
  70. Display::display_header(get_lang('CopySurvey'));
  71. echo Display::page_header(get_lang('CopySurvey'));
  72. $form->display();
  73. Display::display_footer();