Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/main/survey/import.php

66 lines
2.3 KiB

<?php
/*
DOKEOS - elearning and course management software
For a full list of contributors, see documentation/credits.html
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
See "documentation/licence.html" more details.
Contact:
Dokeos
Rue des Palais 44 Paleizenstraat
B-1030 Brussels - Belgium
Tel. +32 (2) 211 34 56
*/
/**
* @package dokeos.survey
* @author
* @version $Id: import.php 10549 2006-12-24 16:08:47Z pcool $
*/
/*
==============================================================================
INIT SECTION
==============================================================================
*/
// name of the language file that needs to be included
$language_file = 'survey';
require ('../inc/global.inc.php');
api_protect_admin_script();
require_once (api_get_path(LIBRARY_PATH)."/course.lib.php");
require_once (api_get_path(LIBRARY_PATH)."/surveymanager.lib.php");
$cidReq = $_REQUEST['cidReq'];
$interbreadcrumb[] = array ("url" => "index.php", "name" => get_lang('AdministrationTools'));
$tool_name = get_lang('SelectQuestion');
$Sname = get_lang('SurveyName');
$GName = get_lang('GroupName');
$Author = get_lang('Author');
$surveyid=$_REQUEST['surveyid'];
$newgroupid = $_REQUEST['newgroupid'];
$groupid=$_REQUEST['groupid'];
$surveyname =surveymanager::get_surveyname($surveyid);
$table_question = Database::get_course_table('questions');
$table_group = Database :: get_course_table('survey_group');
if(isset($groupid)){
surveymanager::insert_groups($surveyid,$newgroupid,$groupid,$table_group,$table_question);
//surveymanager::display_imported_group($surveyid,$table_group,$table_question,$groupid,$cidReq);
header("location:select_question_group.php?surveyid=$surveyid&cidReq=$cidReq");
exit;
}else{
echo "<font color=red size=+1>Error : No Group</font>";
}
/*
==============================================================================
FOOTER
==============================================================================
*/
Display :: display_footer();
?>