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.
22 lines
514 B
22 lines
514 B
<?php //$id$
|
|
/**
|
|
* This script contains the data to fill (or empty) the database with using
|
|
* the fillers in this directory.
|
|
* @author Yannick Warnier <yannick.warnier@dokeos.com>
|
|
*
|
|
*/
|
|
/**
|
|
* Initialisation section
|
|
*/
|
|
global $_configuration;
|
|
$courses = array();
|
|
$courses[] = array(
|
|
'code' => 'ENGLISH101',
|
|
'title' => 'English for beginners',
|
|
'tutor' => '',
|
|
'category' => 'PROJ',
|
|
'language' => 'english',
|
|
'admin_id' => 1,
|
|
'expires' => '2020-09-01 00:00:00',
|
|
'fill' => true,
|
|
);
|
|
|