Chamilo is a learning management system focused on ease of use and accessibility
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.
 
 
 
 
 
 
chamilo-lms/tests/datafiller/fill_courses.php

40 lines
1.3 KiB

<?php
/* For licensing terms, see /license.txt */
/**
* This script contains a data filling procedure for users
* @author Yannick Warnier <yannick.warnier@beeznest.com>
*
*/
/**
* Loads the data and injects it into the Chamilo database, using the Chamilo
* internal functions.
* @return array List of user IDs for the users that have just been inserted
*/
function fill_courses()
{
$courses = array(); // declare only to avoid parsing notice
require_once 'data_courses.php'; // fill the $courses array
$output = array();
$output[] = array('title'=>'Courses Filling Report: ');
$languages = SubLanguageManager::getAllLanguages(true);
$i = 1;
foreach ($courses as $i => $course) {
// First check that the first item doesn't exist already
$output[$i]['line-init'] = $course['title'];
// The wanted code is necessary to avoid interpretation
$course['wanted_code'] = $course['code'];
// Make sure the language defaults to English if others are disabled
if (!isset($languages[$course['course_language']])) {
$course['course_language'] = 'english';
}
// Effectively create the course
$res = CourseManager::create_course($course);
$output[$i]['line-info'] = null !== $res ? get_lang('Added') : get_lang('Not inserted');
$i++;
}
return $output;
}