loader.js 634 Bytes
Newer Older
cyrille's avatar
cyrille committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/**
 * Load all models
 *
 * @return   obj
 * @since    3.16.0
 * @version  3.17.0
 */
define( [
		'Models/Abstract',
		'Models/Course',
		'Models/Image',
		'Models/Lesson',
		'Models/Question',
		'Models/QuestionChoice',
		'Models/QuestionType',
		'Models/Quiz',
		'Models/Section'
	],
	function(
		Abstract,
		Course,
		Image,
		Lesson,
		Question,
		QuestionChoice,
		QuestionType,
		Quiz,
		Section
	) {

		return {
			Abstract: Abstract,
			Course: Course,
			Image: Image,
			Lesson: Lesson,
			Question: Question,
			QuestionChoice: QuestionChoice,
			QuestionType: QuestionType,
			Quiz: Quiz,
			Section: Section,
		};

} );