|
@@ -0,0 +1,31 @@
|
|
|
+<?php //$id$
|
|
|
+/**
|
|
|
+ * This script contains a data filling procedure for users
|
|
|
+ * @author Yannick Warnier <yannick.warnier@beeznest.com>
|
|
|
+ *
|
|
|
+ */
|
|
|
+/**
|
|
|
+ * Initialisation section
|
|
|
+ */
|
|
|
+//require_once '../../main/inc/global.inc.php';
|
|
|
+require_once api_get_path(LIBRARY_PATH).'add_course.lib.inc.php';
|
|
|
+/**
|
|
|
+ * 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() {
|
|
|
+ $eol = PHP_EOL;
|
|
|
+ $courses = array(); //declare only to avoid parsing notice
|
|
|
+ require_once 'data_courses.php'; //fill the $users array
|
|
|
+ $output = array();
|
|
|
+ $output[] = array('title'=>'Courses Filling Report:');
|
|
|
+ $i = 1;
|
|
|
+ foreach ($courses as $i => $course) {
|
|
|
+ //first check that the first item doesn't exist already
|
|
|
+ $output[$i]['line-init'] = $course['title'];
|
|
|
+ $output[$i]['line-info'] = (create_course($course[)?$res:get_lang('NotInserted'));
|
|
|
+ $i++;
|
|
|
+ }
|
|
|
+ return $output;
|
|
|
+}
|