ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
ilCourseImporter Class Reference

folder xml importer More...

+ Inheritance diagram for ilCourseImporter:
+ Collaboration diagram for ilCourseImporter:

Public Member Functions

 init ()
 Init. More...
 
 importXmlRepresentation ($a_entity, $a_id, $a_xml, $a_mapping)
 Import XML. More...
 
 afterContainerImportProcessing (\ilImportMapping $mapping)
 
- Public Member Functions inherited from ilXmlImporter
 __construct ()
 Constructor. More...
 
 setImport ($a_val)
 Set import. More...
 
 getImport ()
 Get import. More...
 
 init ()
 Init. More...
 
 setInstallId ($a_val)
 Set installation id. More...
 
 getInstallId ()
 Get installation id. More...
 
 setInstallUrl ($a_val)
 Set installation url. More...
 
 getInstallUrl ()
 Get installation url. More...
 
 setSchemaVersion ($a_val)
 Set schema version. More...
 
 getSchemaVersion ()
 Get schema version. More...
 
 setImportDirectory ($a_val)
 Set import directory. More...
 
 getImportDirectory ()
 Get import directory. More...
 
 setSkipEntities ($a_val)
 Set skip entities. More...
 
 getSkipEntities ()
 Get skip entities. More...
 
 exportedFromSameInstallation ()
 Is exporting and importing installation identical? More...
 
 importXmlRepresentation ($a_entity, $a_id, $a_xml, $a_mapping)
 Import xml representation. More...
 
 finalProcessing ($a_mapping)
 Final processing. More...
 
 afterContainerImportProcessing (ilImportMapping $mapping)
 Called after all container objects have been implemented. More...
 

Data Fields

const ENTITY_MAIN = 'crs'
 
const ENTITY_OBJECTIVE = 'objectives'
 

Protected Member Functions

 addFinalProcessingInfo ($a_course, $a_entity, $a_xml)
 Add information for final processing. More...
 

Private Attributes

 $course = null
 
 $final_processing_info = array()
 

Additional Inherited Members

- Protected Attributes inherited from ilXmlImporter
 $skip_entities = array()
 
 $imp
 

Detailed Description

folder xml importer

Author
Stefan Meyer meyer.nosp@m.@lei.nosp@m.fos.c.nosp@m.om
Version
$Id$

Definition at line 15 of file class.ilCourseImporter.php.

Member Function Documentation

◆ addFinalProcessingInfo()

ilCourseImporter::addFinalProcessingInfo (   $a_course,
  $a_entity,
  $a_xml 
)
protected

Add information for final processing.

Definition at line 110 of file class.ilCourseImporter.php.

111 {
112 $this->final_processing_info[] = array(
113 'course' => $a_course,
114 'entity' => $a_entity,
115 'xml' => $a_xml
116 );
117 }

Referenced by importXmlRepresentation().

+ Here is the caller graph for this function:

◆ afterContainerImportProcessing()

ilCourseImporter::afterContainerImportProcessing ( \ilImportMapping  $mapping)
Parameters
\ilImportMapping$mapping

Definition at line 94 of file class.ilCourseImporter.php.

95 {
96 foreach($this->final_processing_info as $info)
97 {
98 // import learning objectives
99 include_once './Modules/Course/classes/Objectives/class.ilLOXmlParser.php';
100 $parser = new ilLOXmlParser($info['course'],$info['xml']);
101 $parser->setMapping($mapping);
102 $parser->parseObjectDependencies();
103 return;
104 }
105 }
Class ilLOXmlWriter.
$info
Definition: example_052.php:80

References $info.

◆ importXmlRepresentation()

ilCourseImporter::importXmlRepresentation (   $a_entity,
  $a_id,
  $a_xml,
  $a_mapping 
)

Import XML.

Parameters

return

Reimplemented from ilXmlImporter.

Definition at line 35 of file class.ilCourseImporter.php.

36 {
37 include_once './Modules/Course/classes/class.ilCourseXMLParser.php';
38 include_once './Modules/Course/classes/class.ilObjCourse.php';
39
40
41 if($new_id = $a_mapping->getMapping('Services/Container','objs',$a_id))
42 {
43 $refs = ilObject::_getAllReferences($new_id);
44 $this->course = ilObjectFactory::getInstanceByRefId(end($refs),false);
45 #$this->course = ilObjectFactory::getInstanceByObjId($new_id,false);
46 }
47 // Mapping for containers without subitems
48 elseif($new_id = $a_mapping->getMapping('Services/Container','refs',0))
49 {
50 $this->course = ilObjectFactory::getInstanceByRefId($new_id,false);
51 }
52 elseif(!$this->course instanceof ilObjCourse)
53 {
54 $this->course = new ilObjCourse();
55 $this->course->create(true);
56 }
57
58 if($a_entity == self::ENTITY_OBJECTIVE)
59 {
60 $this->addFinalProcessingInfo($this->course, $a_entity, $a_xml);
61
62 // import learning objectives => without materials and fixed questions.
63 // These are handled in afterContainerImportProcessing
64 include_once './Modules/Course/classes/Objectives/class.ilLOXmlParser.php';
65 $parser = new ilLOXmlParser($this->course,$a_xml);
66 $parser->setMapping($a_mapping);
67 $parser->parse();
68 return;
69 }
70
71 try
72 {
73 $parser = new ilCourseXMLParser($this->course);
74 $parser->setXMLContent($a_xml);
75 $parser->startParsing();
76 $a_mapping->addMapping('Modules/Course','crs',$a_id,$this->course->getId());
77 }
78 catch(ilSaxParserException $e)
79 {
80 $GLOBALS['ilLog']->write(__METHOD__.': Parsing failed with message, "'.$e->getMessage().'".');
81 }
82 catch(Exception $e)
83 {
84 $GLOBALS['ilLog']->write(__METHOD__.': Parsing failed with message, "'.$e->getMessage().'".');
85 }
86 }
addFinalProcessingInfo($a_course, $a_entity, $a_xml)
Add information for final processing.
Class ilObjCourse.
getInstanceByRefId($a_ref_id, $stop_on_error=true)
get an instance of an Ilias object by reference id
static _getAllReferences($a_id)
get all reference ids of object
SaxParserException thrown by ilSaxParser if property throwException is set.
$GLOBALS['PHPCAS_CLIENT']
This global variable is used by the interface class phpCAS.
Definition: CAS.php:276

References $GLOBALS, ilObject\_getAllReferences(), addFinalProcessingInfo(), and ilObjectFactory\getInstanceByRefId().

+ Here is the call graph for this function:

◆ init()

ilCourseImporter::init ( )

Init.

Reimplemented from ilXmlImporter.

Definition at line 25 of file class.ilCourseImporter.php.

26 {
27 }

Field Documentation

◆ $course

ilCourseImporter::$course = null
private

Definition at line 20 of file class.ilCourseImporter.php.

◆ $final_processing_info

ilCourseImporter::$final_processing_info = array()
private

Definition at line 22 of file class.ilCourseImporter.php.

◆ ENTITY_MAIN

const ilCourseImporter::ENTITY_MAIN = 'crs'

Definition at line 17 of file class.ilCourseImporter.php.

◆ ENTITY_OBJECTIVE

const ilCourseImporter::ENTITY_OBJECTIVE = 'objectives'

Definition at line 18 of file class.ilCourseImporter.php.


The documentation for this class was generated from the following file: