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.
51 lines
1.3 KiB
51 lines
1.3 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\PluginBundle\MigrationMoodle\Loader;
|
|
|
|
use Chamilo\PluginBundle\MigrationMoodle\Interfaces\LoaderInterface;
|
|
|
|
/**
|
|
* Class LpDocumentsLoader.
|
|
*
|
|
* Loader to create the items for Chamilo learning paths coming from the list of Moodle lesson pages in a course.
|
|
*
|
|
* @package Chamilo\PluginBundle\MigrationMoodle\Loader
|
|
*/
|
|
class LessonPagesLoader implements LoaderInterface
|
|
{
|
|
/**
|
|
* Load the data and return the ID inserted.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function load(array $incomingData)
|
|
{
|
|
$lp = new \learnpath(
|
|
$incomingData['c_code'],
|
|
$incomingData['lp_id'],
|
|
api_get_user_id()
|
|
);
|
|
$itemId = $lp->add_item(
|
|
$incomingData['parent'],
|
|
$incomingData['previous'],
|
|
$incomingData['item_type'],
|
|
0,
|
|
$incomingData['title'],
|
|
''
|
|
);
|
|
|
|
//$em = \Database::getManager();
|
|
//
|
|
//try {
|
|
// $item = $em->find('ChamiloCourseBundle:CLpItem', $itemId)->setDisplayOrder(0);
|
|
//
|
|
// $em->persist($item);
|
|
// $em->flush();
|
|
//} catch (\Exception $e) {
|
|
// return $itemId;
|
|
//}
|
|
|
|
return $itemId;
|
|
}
|
|
}
|
|
|