ILIAS  release_5-0 Revision 5.0.0-1144-gc4397b1f870
All Data Structures Namespaces Files Functions Variables Modules Pages
ilLearningModuleExporter Class Reference

Exporter class for html learning modules. More...

+ Inheritance diagram for ilLearningModuleExporter:
+ Collaboration diagram for ilLearningModuleExporter:

Public Member Functions

 init ()
 Initialisation. More...
 
 getXmlRepresentation ($a_entity, $a_schema_version, $a_id)
 Get xml representation. More...
 
 getValidSchemaVersions ($a_entity)
 Returns schema versions that the component can export to. More...
 
- Public Member Functions inherited from ilXmlExporter
 __construct ()
 Constructor. More...
 
 getXmlRepresentation ($a_entity, $a_schema_version, $a_id)
 Get xml representation. More...
 
 init ()
 
 setExportDirectories ($a_dir_relative, $a_dir_absolute)
 Export directories. More...
 
 getRelativeExportDirectory ()
 Get relative export directory. More...
 
 getAbsoluteExportDirectory ()
 Get absolute export directory. More...
 
 getXmlExportHeadDependencies ($a_entity, $a_target_release, $a_ids)
 Get head dependencies. More...
 
 getXmlExportTailDependencies ($a_entity, $a_target_release, $a_ids)
 Get tail dependencies. More...
 
 getValidSchemaVersions ($a_entity)
 Returns schema versions that the component can export to. More...
 
 determineSchemaVersion ($a_entity, $a_target_release)
 Determine schema version. More...
 

Private Attributes

 $ds
 

Additional Inherited Members

- Static Public Member Functions inherited from ilXmlExporter
static lookupExportDirectory ($a_obj_type, $a_obj_id, $a_export_type='xml', $a_entity="")
 export directory lookup More...
 
- Protected Attributes inherited from ilXmlExporter
 $dir_relative
 
 $dir_absolute
 

Detailed Description

Exporter class for html learning modules.

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

Definition at line 13 of file class.ilLearningModuleExporter.php.

Member Function Documentation

◆ getValidSchemaVersions()

ilLearningModuleExporter::getValidSchemaVersions (   $a_entity)

Returns schema versions that the component can export to.

ILIAS chooses the first one, that has min/max constraints which fit to the target release. Please put the newest on top.

Returns

Definition at line 50 of file class.ilLearningModuleExporter.php.

51  {
52  return array (
53  "4.1.0" => array(
54  "namespace" => "http://www.ilias.de/Modules/LearningModule/htlm/4_1",
55  "xsd_file" => "ilias_lm_4_1.xsd",
56  "uses_dataset" => false,
57  "min" => "4.1.0",
58  "max" => "")
59  );
60  }

◆ getXmlRepresentation()

ilLearningModuleExporter::getXmlRepresentation (   $a_entity,
  $a_schema_version,
  $a_id 
)

Get xml representation.

Parameters
stringentity
stringtarget release
stringid
Returns
string xml string

Definition at line 32 of file class.ilLearningModuleExporter.php.

33  {
34  include_once './Modules/LearningModule/classes/class.ilObjLearningModule.php';
35  $lm = new ilObjLearningModule($a_id,false);
36 
37  include_once './Modules/LearningModule/classes/class.ilContObjectExport.php';
38  $exp = new ilContObjectExport($lm);
39  $zip = $exp->buildExportFile();
40 
41  }
Class ilObjLearningModule.
Export class for content objects.

◆ init()

ilLearningModuleExporter::init ( )

Initialisation.

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

21  {
22  }

Field Documentation

◆ $ds

ilLearningModuleExporter::$ds
private

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


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