3 declare(strict_types=1);
42 public function __construct($a_record_id, $a_obj_id, $a_sub_type =
"-", $a_sub_id = 0)
44 $this->record_id = (
int) $a_record_id;
45 $this->obj_id = (
int) $a_obj_id;
46 $this->sub_type = $a_sub_type ?:
"-";
47 $this->sub_id = (
int) $a_sub_id;
52 ?
string $a_obj_type = null,
53 string $a_sub_type =
"-",
67 $records = $orderings->sortRecords($records, $a_obj_id);
69 foreach ($records as $record) {
70 $id = $record->getRecordId();
73 $res[
$id] =
new self(
$id, $a_obj_id, $a_sub_type, $a_sub_id);
82 $this->obj_id = $a_obj_id;
83 $this->sub_type = $a_sub_type ?:
"-";
84 $this->sub_id = $a_sub_id;
87 $this->active_record = null;
96 if (!is_array($this->defs)) {
104 if (!$this->adt_group instanceof
ilADTGroup) {
121 "obj_id" => array(
"integer", $this->obj_id),
122 "sub_type" => array(
"text", $this->sub_type),
123 "sub_id" => array(
"integer", $this->sub_id)
125 $adt_group_db->setPrimary($primary);
126 $adt_group_db->setTable(
"adv_md_values");
129 foreach ($adt_group_db->getElements() as $element) {
130 if ($element->getADT()->getType() ==
"MultiEnum") {
131 $element->setFakeSingle(
true);
135 $this->active_record =
$factory->getActiveRecordByTypeInstance($adt_group_db);
136 $this->active_record->setElementIdColumn(
"field_id",
"integer");
161 return in_array($a_element_id, $this->
disabled);
175 foreach ($tmp as $element_id =>
$data) {
176 if (
$data[
"disabled"]) {
186 public function write(array $a_additional_data = null): void
202 array(
"field_id" => array(
"integer", $a_field_id)),
215 array(
"obj_id" => array(
"integer", $a_obj_id))
227 $ilDB = $DIC[
'ilDB'];
233 array(
"obj_id" => array(
"integer", $a_obj_ids))
238 self::$preload_obj_records = array();
241 $query =
"SELECT amro.*" .
242 " FROM adv_md_record_objs amro" .
243 " JOIN adv_md_record amr ON (amr.record_id = amro.record_id)" .
244 " WHERE active = " .
$ilDB->quote(1,
"integer");
246 while ($row =
$ilDB->fetchAssoc($set)) {
247 self::$preload_obj_records[(string) $row[
"obj_type"]][] = array((
int) $row[
"record_id"],
248 (
int) $row[
"optional"]
257 if (isset(self::$preload_obj_records[$a_type])) {
258 foreach (self::$preload_obj_records[$a_type] as $item) {
259 $record_id = $item[0];
270 if ($record->getRecordId() == $item[0]) {
294 ?
string $a_sub_type = null,
295 ?
int $a_source_sub_id = null,
296 ?
int $a_target_sub_id = null
300 $ilLog = $DIC[
'ilLog'];
305 $new_records = $fields_map = array();
309 $parent_mapping = null;
310 if (!is_null($a_source_sub_id) && $copy_id > 0) {
311 $parent_mapping = self::getParentMapping($copy_id, (
string) $a_target_id);
312 if (!is_null($parent_mapping)) {
313 $new_records = $parent_mapping[
"records"];
314 $fields_map = $parent_mapping[
"fields"];
318 $record_mapping = [];
320 if ($record->getParentObject() == $a_source_id && is_null($parent_mapping)) {
324 if (!is_null($a_source_sub_id) && $copy_id > 0) {
325 throw new ilException(
"ilAdvancedMDValues::_cloneValues must be called for parent object first.");
329 if ($a_source_id != $a_target_id) {
330 $new_records[$record->getRecordId()] = $record->_clone($tmp, $a_target_id);
331 $record_mapping[$record->getRecordId()] = $new_records[$record->getRecordId()]->getRecordId();
333 $new_records[$record->getRecordId()] = $record->getRecordId();
335 $fields_map[$record->getRecordId()] = $tmp;
340 if ($copy_id > 0 && is_null($a_source_sub_id)) {
342 $cp_options->appendMapping(
343 $a_target_id .
'_adv_rec',
346 $cp_options->appendMapping(
347 $a_target_id .
'_adv_rec_fields',
357 $target_sel = array();
358 foreach ($source_sel as $record_id) {
360 if (array_key_exists($record_id, $new_records)) {
361 $record_id = $new_records[
$record_id]->getRecordId();
370 $source_primary = array(
"obj_id" => array(
"integer", $a_source_id));
371 $target_primary = array(
"obj_id" => array(
"integer", $a_target_id));
377 $source_primary[
"sub_type"] = array(
"text", $a_sub_type);
378 $source_primary[
"sub_id"] = array(
"integer", $a_source_sub_id);
379 $target_primary[
"sub_type"] = array(
"text", $a_sub_type);
380 $target_primary[
"sub_id"] = array(
"integer", $a_target_sub_id);
387 "obj_id" =>
"integer",
388 "sub_type" =>
"text",
389 "sub_id" =>
"integer",
390 "field_id" =>
"integer" 394 array(
"disabled" =>
"integer")
399 foreach ($fields_map as $source_record_id => $fields) {
401 if (array_key_exists($source_record_id, $new_records)) {
402 foreach ($fields as $source_field_id => $target_field_id) {
404 $del_target_primary = $target_primary;
405 $del_target_primary[
"field_id"] = array(
"integer", $source_field_id);
409 $fix_source_primary = $source_primary;
410 $fix_source_primary[
"field_id"] = array(
"integer", $source_field_id);
411 $fix_target_primary = $target_primary;
412 $fix_target_primary[
"field_id"] = array(
"integer", $target_field_id);
416 "obj_id" =>
"integer",
417 "sub_type" =>
"text",
418 "sub_id" =>
"integer",
419 "field_id" =>
"integer" 423 array(
"disabled" =>
"integer")
430 $ilLog->write(__METHOD__ .
': No advanced meta data found.');
432 $ilLog->write(__METHOD__ .
': Start cloning advanced meta data.');
439 $mappings = $cp_options->getMappings();
440 $key1 = $target .
'_adv_rec';
441 $key2 = $target .
'_adv_rec_fields';
442 if (is_array($mappings) && isset($mappings[$key1])) {
444 "records" => $mappings[$key1],
445 "fields" => $mappings[$key2] ?? []
460 self::preloadByObjIds(array($a_obj_id));
463 foreach ($values_records as $values_record) {
464 $defs = $values_record->getDefinitions();
465 foreach ($values_record->getADTGroup()->getElements() as $element_id => $element) {
466 $def = $defs[$element_id];
469 if (!$element->isNull()) {
470 $value = $def->getValueForXML($element);
475 array(
'id' => $def->getImportId()),
480 $a_xml_writer->
xmlEndTag(
'AdvancedMetaData');
487 int $adv_rec_obj_ref_id,
488 string $adv_rec_obj_type,
489 string $adv_rec_obj_subtype,
493 string $a_obj_id_key,
494 string $a_obj_subid_key,
495 array $a_amet_filter = null
499 $sub_obj_ids = array();
500 foreach ($a_records as $rec) {
501 $sub_obj_ids[] = $rec[$a_obj_subid_key];
509 "obj_id" => array(
"integer", $a_obj_id),
510 "sub_type" => array(
"text", $a_subtype),
511 "sub_id" => array(
"integer", $sub_obj_ids)
515 $record_groups = array();
517 foreach ($a_records as $rec) {
518 $obj_id = (
int) ($rec[$a_obj_id_key] ?? 0);
519 $sub_id = $rec[$a_obj_subid_key];
527 $record_id = $adv_record->getRecordId();
529 if (!isset($record_groups[$record_id])) {
533 $record_groups[
$record_id]->setTable(
"adv_md_values");
538 "obj_id" => array(
"integer", $obj_id),
539 "sub_type" => array(
"text", $a_subtype),
540 "sub_id" => array(
"integer", $sub_id)
543 foreach ($record_groups[$record_id]->getElements() as $element) {
544 if ($element->getADT()->getType() ==
"MultiEnum") {
545 $element->setFakeSingle(
true);
552 $active_record->
read();
554 $adt_group = $record_groups[
$record_id]->getADT();
556 if ($a_amet_filter) {
557 foreach ($a_amet_filter as $field_id => $element) {
558 if ($adt_group->
hasElement((
string) $field_id)) {
559 if (!$element->isInCondition($adt_group->
getElement((
string) $field_id))) {
566 foreach ($adt_group->
getElements() as $element_id => $element) {
567 if (!$element->isNull()) {
570 $rec[
"md_" . $element_id] = $pb->getSortable();
571 $rec[
"md_" . $element_id .
"_presentation"] = $pb;
573 $rec[
"md_" . $element_id] = null;
getType()
Get type (from class/instance)
static getInstancesForObjectId(int $a_obj_id, ?string $a_obj_type=null, string $a_sub_type="-", int $a_sub_id=0)
static readByPrimary(string $a_table, array $a_primary, ?string $a_type=null)
Read directly.
static _deleteByFieldId(int $a_field_id, ilADT $a_adt)
Delete values by field_id.
setElementIdColumn(string $a_name, string $a_type)
hasElement(string $a_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getRecords()
Get records public.
static initActiveRecordByType()
Init active record by type.
static preloadByObjIds(array $a_obj_ids)
Preload list gui data.
static _getAllReferences(int $id)
get all reference ids for object ID
static preloadByPrimary(string $a_table, array $a_primary)
static saveObjRecSelection(int $a_obj_id, string $a_sub_type="", array $a_records=null, bool $a_delete_before=true)
Save repository object record selection.
static getADTGroupForDefinitions(array $a_defs)
Init ADTGroup for definitions.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getSelectedRecordsByObject(string $a_obj_type, int $a_id, string $a_sub_type="", bool $is_ref_id=true)
static preloadedRead(string $a_type, int $a_obj_id)
static getInstancesByRecordId( $a_record_id, $a_only_searchable=false, string $language='')
Get definitions by record id.
xmlEndTag(string $tag)
Writes an endtag.
static deleteByPrimary(string $a_table, array $a_primary, string $a_type=null)
setActiveRecordPrimary(int $a_obj_id, string $a_sub_type="-", int $a_sub_id=0)
static getObjRecSelection(int $a_obj_id, string $a_sub_type="")
Get repository object record selection.
ilADTActiveRecordByType $active_record
static findByObjectId(int $a_obj_id)
Find all entries for object (regardless of sub-type/sub-id)
getActiveRecord()
Init ADT DB Bridge (aka active record helper class)
__construct($a_record_id, $a_obj_id, $a_sub_type="-", $a_sub_id=0)
static _deleteByObjId(int $a_obj_id)
Delete by objekt id.
read(bool $a_return_additional_data=false)
Read record.
static array $preload_obj_records
isDisabled(string $a_element_id)
static _appendXMLByObjId(ilXmlWriter $a_xml_writer, int $a_obj_id)
Get xml of object values.
write(array $a_additional_data=null)
Write record values.
static _cloneValues(int $copy_id, int $a_source_id, int $a_target_id, ?string $a_sub_type=null, ?int $a_source_sub_id=null, ?int $a_target_sub_id=null)
Clone Advanced Meta Data.
static cloneByPrimary(string $a_table, array $a_primary_def, array $a_source_primary, array $a_target_primary, array $a_additional=null)
Clone values by (partial) primary key.
static queryForRecords(int $adv_rec_obj_ref_id, string $adv_rec_obj_type, string $adv_rec_obj_subtype, array $a_obj_id, string $a_subtype, array $a_records, string $a_obj_id_key, string $a_obj_subid_key, array $a_amet_filter=null)
static getParentMapping(int $copy_id, string $target)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
static _getInstance(int $a_copy_id)
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
static _lookupType(int $id, bool $reference=false)
getElement(string $a_name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDefinitions()
Get record field definitions.