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.
73 lines
2.5 KiB
73 lines
2.5 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\MigrationMoodle\Task;
|
|
|
|
use Chamilo\PluginBundle\MigrationMoodle\Extractor\LoadedCoursesFilterExtractor;
|
|
use Chamilo\PluginBundle\MigrationMoodle\Transformer\BaseTransformer;
|
|
use Chamilo\PluginBundle\MigrationMoodle\Transformer\Property\LoadedCourseLookup;
|
|
use Chamilo\PluginBundle\MigrationMoodle\Transformer\Property\LoadedLessonPageQuizLookup;
|
|
use Chamilo\PluginBundle\MigrationMoodle\Transformer\Property\LoadedQuestionLookup;
|
|
|
|
/**
|
|
* Class QuestionShortAnswerTask.
|
|
*
|
|
* @package Chamilo\PluginBundle\MigrationMoodle\Task
|
|
*/
|
|
class QuestionShortAnswerTask extends LessonAnswersShortAnswerTask
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getExtractConfiguration()
|
|
{
|
|
return [
|
|
'class' => LoadedCoursesFilterExtractor::class,
|
|
'query' => "SELECT
|
|
qa.id,
|
|
qa.question,
|
|
GROUP_CONCAT(qa.answer SEPARATOR '||') answers,
|
|
qq.defaultmark,
|
|
GROUP_CONCAT(qa.feedback SEPARATOR '\n') feedback,
|
|
COUNT(qa.id) nb,
|
|
q.id quizid,
|
|
q.course
|
|
FROM mdl_question_answers qa
|
|
INNER JOIN mdl_question qq ON qa.question = qq.id
|
|
INNER JOIN mdl_qtype_shortanswer_options qo ON qq.id = qo.questionid
|
|
INNER JOIN mdl_quiz_slots qs ON qq.id = qs.questionid
|
|
INNER JOIN mdl_quiz q ON qs.quizid = q.id
|
|
WHERE qq.qtype = 'shortanswer'
|
|
GROUP BY qq.id
|
|
ORDER BY q.course, qq.id",
|
|
];
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getTransformConfiguration()
|
|
{
|
|
return [
|
|
'class' => BaseTransformer::class,
|
|
'map' => [
|
|
'c_id' => [
|
|
'class' => LoadedCourseLookup::class,
|
|
'properties' => ['course'],
|
|
],
|
|
'quiz_id' => [
|
|
'class' => LoadedLessonPageQuizLookup::class,
|
|
'properties' => ['quizid'],
|
|
],
|
|
'question_id' => [
|
|
'class' => LoadedQuestionLookup::class,
|
|
'properties' => ['question'],
|
|
],
|
|
'scores' => 'defaultmark',
|
|
'answers' => 'answers',
|
|
'comment' => 'feedback',
|
|
'nb' => 'nb',
|
|
],
|
|
];
|
|
}
|
|
}
|
|
|