You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.5 KiB
89 lines
2.5 KiB
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
require_once __DIR__.'/../inc/global.inc.php';
|
|
|
|
$current_course_tool = TOOL_COURSE_MAINTENANCE;
|
|
|
|
api_protect_course_script(true);
|
|
|
|
// Notice for unauthorized people.
|
|
if (!api_is_allowed_to_edit()) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
// Breadcrumbs
|
|
$interbreadcrumb[] = [
|
|
'url' => api_get_path(WEB_CODE_PATH).'survey/survey_list.php?'.api_get_cidreq(),
|
|
'name' => get_lang('Survey list'),
|
|
];
|
|
|
|
// The section (for the tabs)
|
|
$this_section = SECTION_COURSES;
|
|
|
|
$surveyId = isset($_GET['survey_id']) ? (int) $_GET['survey_id'] : 0;
|
|
|
|
if (empty($surveyId)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$survey = SurveyManager::get_survey($surveyId);
|
|
if (empty($survey)) {
|
|
api_not_allowed(true);
|
|
}
|
|
|
|
$surveyTitle = str_replace(' ', '', strip_tags($survey['title'].' ('.$survey['code'].') '));
|
|
|
|
$form = new FormValidator('copy_survey', 'post', api_get_self().'?survey_id='.$surveyId.'&'.api_get_cidreq());
|
|
$form->addElement(
|
|
'text',
|
|
'survey_title',
|
|
get_lang('Survey'),
|
|
['value' => $surveyTitle, 'disabled' => 'disabled']
|
|
);
|
|
$form->addSelectAjax(
|
|
'destination_course',
|
|
get_lang('Select target course'),
|
|
null,
|
|
[
|
|
'url' => api_get_path(WEB_AJAX_PATH).'course.ajax.php?a=get_my_courses_and_sessions&'.api_get_cidreq(),
|
|
]
|
|
);
|
|
|
|
$form->addButtonCopy(get_lang('Copy survey'));
|
|
|
|
// Add Security token
|
|
$token = Security::get_existing_token();
|
|
$form->addElement('hidden', 'sec_token');
|
|
$form->setConstants(['sec_token' => $token]);
|
|
|
|
// If a CourseSelectForm is posted or we should copy all resources, then copy them
|
|
if ($form->validate() && Security::check_token('post')) {
|
|
// Clear token
|
|
Security::clear_token();
|
|
$values = $form->getSubmitValues();
|
|
$courseKey = $values['destination_course'];
|
|
$courseParts = explode('_', $courseKey);
|
|
$courseId = $courseParts[0];
|
|
$sessionId = $courseParts[1];
|
|
|
|
// Copy the survey to the target course
|
|
$surveyCopyId = SurveyManager::copySurveySession($surveyId, $courseId, $sessionId);
|
|
if ($surveyCopyId) {
|
|
// Empty the copied survey
|
|
SurveyManager::emptySurveyFromId($surveyCopyId);
|
|
Display::addFlash(Display::return_message(get_lang('Survey copied')));
|
|
} else {
|
|
Display::addFlash(Display::return_message(get_lang('There was an error.'), 'warning'));
|
|
}
|
|
|
|
header('Location: '.api_get_self().'?'.api_get_cidreq().'&survey_id='.$surveyId);
|
|
exit;
|
|
}
|
|
|
|
Display::display_header(get_lang('Copy survey'));
|
|
echo Display::page_header(get_lang('Copy survey'));
|
|
$form->display();
|
|
|
|
Display::display_footer();
|
|
|