data_courses.php 625 B

12345678910111213141516171819202122
  1. <?php //$id$
  2. /**
  3. * This script contains the data to fill (or empty) the database with using
  4. * the fillers in this directory.
  5. * @author Yannick Warnier <yannick.warnier@dokeos.com>
  6. *
  7. */
  8. /**
  9. * Initialisation section
  10. */
  11. $courses = array();
  12. $courses[] = array(
  13. 'code' => 'ENGLISH101',
  14. 'title' => 'English for beginners',
  15. 'description' => 'English course',
  16. 'category_code' => 'PROJ',
  17. 'course_language' => 'english',
  18. 'user_id' => 1,
  19. 'expiration_date' => '2020-09-01 00:00:00',
  20. 'exemplary_content' => true,
  21. );