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.
25 lines
564 B
25 lines
564 B
|
6 years ago
|
<?php
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
|
||
|
|
namespace Chamilo\PluginBundle\MigrationMoodle\Loader;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Class LessonAnswersMultipleChoiceLoader.
|
||
|
|
*
|
||
|
|
* Loader to create Unique Answer question comming from Multiple Choice lesson page.
|
||
|
|
*
|
||
|
|
* @package Chamilo\PluginBundle\MigrationMoodle\Loader
|
||
|
|
*/
|
||
|
|
class LessonAnswersMultipleChoiceLoader extends LessonAnswerTrueFalseLoader
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* @param array $incomingData
|
||
|
|
*
|
||
|
|
* @return int
|
||
|
|
*/
|
||
|
|
public function load(array $incomingData)
|
||
|
|
{
|
||
|
|
return parent::load($incomingData);
|
||
|
|
}
|
||
|
|
}
|