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.
35 lines
734 B
35 lines
734 B
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\MigrationMoodle\Loader;
|
|
|
|
use Chamilo\PluginBundle\MigrationMoodle\Interfaces\LoaderInterface;
|
|
|
|
/**
|
|
* Class CourseModulesUrlLoader.
|
|
*
|
|
* @package Chamilo\PluginBundle\MigrationMoodle\Loader
|
|
*/
|
|
class CourseModulesUrlLoader implements LoaderInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function load(array $incomingData)
|
|
{
|
|
$lp = new \learnpath(
|
|
$incomingData['c_code'],
|
|
$incomingData['lp_id'],
|
|
api_get_user_id()
|
|
);
|
|
|
|
return $lp->add_item(
|
|
0,
|
|
0,
|
|
'link',
|
|
0,
|
|
$incomingData['title'],
|
|
''
|
|
);
|
|
}
|
|
}
|
|
|