ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ilScormAiccExporter Class Reference
+ Inheritance diagram for ilScormAiccExporter:
+ Collaboration diagram for ilScormAiccExporter:

Public Member Functions

 __construct ()
 
 init ()
 
 getXmlRepresentation ($a_entity, $a_schema_version, $a_id)
 
 getValidSchemaVersions ($a_entity)
 
- Public Member Functions inherited from ilXmlExporter
 __construct ()
 Constructor. More...
 
 setExport (ilExport $a_exp)
 Set export object. More...
 
 getExport ()
 Get export. 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...
 

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
 
 $exp
 

Detailed Description

Definition at line 4 of file class.ilScormAiccExporter.php.

Constructor & Destructor Documentation

◆ __construct()

ilScormAiccExporter::__construct ( )

Definition at line 6 of file class.ilScormAiccExporter.php.

7  {
8  include_once("./Modules/ScormAicc/classes/class.ilScormAiccDataSet.php");
9  $this->dataset = new ilScormAiccDataSet();
10  }

Member Function Documentation

◆ getValidSchemaVersions()

ilScormAiccExporter::getValidSchemaVersions (   $a_entity)

Definition at line 24 of file class.ilScormAiccExporter.php.

References array.

25  {
26  return array (
27  "5.1.0" => array(
28  "namespace" => "http://www.ilias.de/Modules/ScormAicc/sahs/5_1",
29  "xsd_file" => "xml/ilias_sahs_5_1.xsd",
30  "uses_dataset" => true,
31  "min" => "5.1.0",
32  "max" => "")
33  );
34  }
Create styles array
The data for the language used.

◆ getXmlRepresentation()

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

Definition at line 16 of file class.ilScormAiccExporter.php.

17  {
18  $this->dataset->setExportDirectories($this->dir_relative, $this->dir_absolute);
19  //using own getXmlRepresentation function in ilScormAiccDataSet
20  return $this->dataset->getExtendedXmlRepresentation($a_entity, $a_schema_version, $a_id, "", false, true);
21  }

◆ init()

ilScormAiccExporter::init ( )

Definition at line 12 of file class.ilScormAiccExporter.php.

13  {
14  }

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