ILIAS  release_4-4 Revision
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 
4 include_once("./Services/Export/classes/class.ilXmlImporter.php");
5 include_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 ?>