ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilIndividualAssessmentExporter.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3include_once("./Services/Export/classes/class.ilXmlExporter.php");
4require_once("Modules/IndividualAssessment/classes/class.ilIndividualAssessmentDataSet.php");
5
12{
13
17 public function init()
18 {
19 $this->ds = new ilIndividualAssessmentDataSet();
20 }
21
25 public function getXmlRepresentation($a_entity, $a_schema_version, $a_id)
26 {
28 $this->ds->setExportDirectories($this->dir_relative, $this->dir_absolute);
29
30 return $this->ds->getXmlRepresentation($a_entity, $a_schema_version, $a_id, '', true, true);
31 }
32
36 public function getXmlExportTailDependencies($a_entity, $a_target_release, $a_ids)
37 {
38 $res = [];
39
40 if ($a_entity == "iass") {
41 // service settings
42 $res[] = array(
43 "component" => "Services/Object",
44 "entity" => "common",
45 "ids" => $a_ids
46 );
47 }
48
49 return $res;
50 }
51
55 public function getValidSchemaVersions($a_entity)
56 {
57 return array(
58 "5.2.0" => array(
59 "namespace" => "http://www.ilias.de/Services/User/iass/5_2",
60 "xsd_file" => "ilias_iass_5_2.xsd",
61 "uses_dataset" => true,
62 "min" => "5.2.0",
63 "max" => "5.2.99"),
64 "5.3.0" => array(
65 "namespace" => "http://www.ilias.de/Services/User/iass/5_3",
66 "xsd_file" => "ilias_iass_5_3.xsd",
67 "uses_dataset" => true,
68 "min" => "5.3.0",
69 "max" => "")
70 );
71 }
72}
An exception for terminatinating execution or to throw for unit testing.
Individual Assessment dataset class.
static makeDirParents($a_dir)
Create a new directory and all parent directories.
Xml Exporter class.
getAbsoluteExportDirectory()
Get absolute export directory.
getValidSchemaVersions($a_entity)
Returns schema versions that the component can export to.ILIAS chooses the first one,...
getXmlRepresentation($a_entity, $a_schema_version, $a_id)
Get xml representation.string xml string
getXmlExportTailDependencies($a_entity, $a_target_release, $a_ids)
Get tail dependencies.array array of array with keys "component", entity", "ids"
foreach($_POST as $key=> $value) $res