ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilCourseReferenceImporter.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once("./Services/Export/classes/class.ilXmlImporter.php");
5include_once './Services/ContainerReference/classes/class.ilContainerReferenceImporter.php';
6
7
18{
19
23 protected function getType()
24 {
25 return 'crsr';
26 }
27
31 protected function initParser($a_xml)
32 {
33 include_once './Modules/CourseReference/classes/class.ilCourseReferenceXmlParser.php';
34 return new ilCourseReferenceXmlParser($a_xml);
35 }
36}
37?>