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.
24 lines
564 B
24 lines
564 B
<?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);
|
|
}
|
|
}
|
|
|