29 return array(
"4.3.0",
"5.3.0");
32 public function getXmlNamespace(
string $a_entity,
string $a_schema_version): string
34 return "https://www.ilias.de/xml/Modules/ItemGroup/" . $a_entity;
37 protected function getTypes(
string $a_entity,
string $a_version): array
39 if ($a_entity ==
"itgr") {
45 "Description" =>
"text");
49 "HideTitle" =>
"integer",
50 "Behaviour" =>
"integer",
52 "Description" =>
"text");
56 if ($a_entity ==
"itgr_item") {
61 "ItemGroupId" =>
"integer",
69 public function readData(
string $a_entity,
string $a_version, array $a_ids): void
73 if ($a_entity ==
"itgr") {
77 " FROM object_data " .
79 $ilDB->in(
"obj_id", $a_ids,
false,
"integer"));
83 " FROM object_data JOIN itgr_data ON (object_data.obj_id = itgr_data.id)" .
85 $ilDB->in(
"obj_id", $a_ids,
false,
"integer"));
90 if ($a_entity ==
"itgr_item") {
95 " FROM item_group_item " .
97 $ilDB->in(
"item_group_id", $a_ids,
false,
"integer"));
103 public function getXmlRecord(
string $a_entity,
string $a_version, array $a_set): array
105 if ($a_entity ==
"itgr_item") {
115 ?array $a_rec =
null,
121 "itgr_item" => array(
"ids" => $a_rec[
"Id"] ?? [])
133 string $a_schema_version
138 if ($new_id = $a_mapping->
getMapping(
'components/ILIAS/Container',
'objs', $a_rec[
'Id'])) {
143 $newObj->setType(
"itgr");
144 $newObj->create(
true);
147 $newObj->setTitle($a_rec[
"Title"]);
148 $newObj->setDescription($a_rec[
"Description"]);
149 $newObj->setBehaviour($a_rec[
"Behaviour"]);
150 $newObj->setHideTitle($a_rec[
"HideTitle"]);
152 $this->current_obj = $newObj;
153 $a_mapping->
addMapping(
"components/ILIAS/ItemGroup",
"itgr", $a_rec[
"Id"], $newObj->getId());
158 if ($obj_id = $a_mapping->
getMapping(
'components/ILIAS/Container',
'objs', $a_rec[
'ItemId'])) {
161 $itgri->setItemGroupId($this->current_obj->getId());
readData(string $a_entity, string $a_version, array $a_ids)
getXmlNamespace(string $a_entity, string $a_schema_version)
static _getAllReferences(int $id)
get all reference ids for object ID
addMapping(string $a_comp, string $a_entity, string $a_old_id, string $a_new_id)
static _lookupObjId(int $ref_id)
getDependencies(string $a_entity, string $a_version, ?array $a_rec=null, ?array $a_ids=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getMapping(string $a_comp, string $a_entity, string $a_old_id)
importRecord(string $a_entity, array $a_types, array $a_rec, ilImportMapping $a_mapping, string $a_schema_version)
Needs to be overwritten for import use case.
getXmlRecord(string $a_entity, string $a_version, array $a_set)
ilObjItemGroup $current_obj
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTypes(string $a_entity, string $a_version)
getDirectDataFromQuery(string $a_query, bool $a_convert_to_leading_upper=true, bool $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
stripTags(array $rec, array $omit_keys=[])