5 include_once
'./Services/AdvancedMetaData/classes/class.ilAdvancedMDRecordScope.php';
62 $this->record_id = $a_record_id;
81 if (isset(self::$instances[$a_record_id])) {
82 return self::$instances[$a_record_id];
100 $query =
"SELECT DISTINCT(amr.record_id) FROM adv_md_record amr " .
101 "JOIN adv_mdf_definition amfd ON amr.record_id = amfd.record_id " .
102 "WHERE searchable = 1 AND active = 1 ";
106 $records[] = self::_getInstanceByRecordId($row->record_id);
108 return $records ? $records : array();
121 static $title_cache = array();
123 if (isset($title_cache[$a_record_id])) {
124 return $title_cache[$a_record_id];
129 $ilDB = $DIC[
'ilDB'];
131 $query =
"SELECT title FROM adv_md_record " .
132 "WHERE record_id = " .
$ilDB->quote($a_record_id,
'integer') .
" ";
136 return $title_cache[$a_record_id] = $row->title;
151 $ilDB = $DIC[
'ilDB'];
153 $query =
"SELECT record_id FROM adv_md_record " .
154 "WHERE import_id = " .
$ilDB->quote($a_ilias_id,
'text') .
" ";
157 return $row->record_id;
172 $objDefinition = $DIC[
'objDefinition'];
177 $amet_types = $objDefinition->getAdvancedMetaDataTypes();
184 foreach ($amet_types as $at) {
185 if (in_array($at[
"obj_type"], $filter)) {
189 if ($a_include_text) {
190 $text =
$lng->txt(
"obj_" . $at[
"obj_type"]);
191 if ($at[
"sub_type"] !=
"") {
192 $lng->loadLanguageModule($at[
"obj_type"]);
193 $text .=
": " .
$lng->txt($at[
"obj_type"] .
"_" . $at[
"sub_type"]);
195 $at[
"sub_type"] =
"-";
219 $ilDB = $DIC[
'ilDB'];
221 $query =
"SELECT DISTINCT(obj_type) FROM adv_md_record_objs amo " .
222 "JOIN adv_md_record amr ON amo.record_id = amr.record_id " .
244 $ilDB = $DIC[
'ilDB'];
246 $query =
"SELECT record_id FROM adv_md_record ORDER BY gpos ";
251 return $records ? $records : array();
266 $ilDB = $DIC[
'ilDB'];
270 $query =
"SELECT * FROM adv_md_record_objs WHERE sub_type=" .
$ilDB->quote(
"-",
"text");
273 $records[$row->obj_type][] = self::_getInstanceByRecordId($row->record_id);
279 $records = array_diff_key($records, array_flip($filter));
298 $ilDB = $DIC[
'ilDB'];
302 if ($a_sub_type ==
"") {
306 $query =
"SELECT amro.record_id record_id FROM adv_md_record_objs amro " .
307 "JOIN adv_md_record amr ON amr.record_id = amro.record_id " .
308 "WHERE active = 1 " .
309 "AND obj_type = " .
$ilDB->quote($a_obj_type,
'text') .
" " .
310 "AND sub_type = " .
$ilDB->quote($a_sub_type,
'text');
312 if ($a_only_optional) {
313 $query .=
" AND optional =" .
$ilDB->quote(1,
'integer');
317 $query .=
"ORDER by parent_obj DESC, record_id";
321 $records[] = self::_getInstanceByRecordId($row->record_id);
339 if ($a_sub_type ==
"") {
346 include_once
'Services/Container/classes/class.ilContainer.php';
347 include_once
'Services/Object/classes/class.ilObjectServiceSettingsGUI.php';
355 foreach (self::_getActivatedRecordsByObjectType($a_obj_type, $a_sub_type) as $record) {
357 if (self::isFilteredByScope($a_ref_id, $record->getScopes())) {
361 foreach ($record->getAssignedObjectTypes() as $item) {
362 if ($record->getParentObject()) {
364 if ($record->getParentObject() != $a_obj_id) {
368 elseif (!$config_setting) {
373 if ($item[
'obj_type'] == $a_obj_type &&
374 $item[
'sub_type'] == $a_sub_type) {
375 if ($item[
'optional']) {
376 $optional[] = $record->getRecordId();
378 $records[$record->getRecordId()] = $record;
384 if (!$config_setting && !in_array($a_sub_type, array(
"orgu_type",
"prg_type"))) {
387 $selected = self::getObjRecSelection($a_obj_id, $a_sub_type);
390 if (!in_array($record_id, $selected)) {
391 unset($records[$record_id]);
398 $records = $orderings->sortRecords($records, $a_obj_id);
410 $tree =
$GLOBALS[
'DIC']->repositoryTree();
411 $logger =
$GLOBALS[
'DIC']->logger()->amet();
413 if (!count($scopes)) {
416 foreach ($scopes as $scope) {
417 $logger->debug(
'Comparing: ' . $a_ref_id .
' with: ' . $scope->getRefId());
418 if ($scope->getRefId() == $a_ref_id) {
419 $logger->debug(
'Elements are equal. No scope restrictions.');
423 $logger->debug(
'Node is child node. No scope restrictions.');
427 $logger->info(
'Scope filter matches.');
445 $ilDB = $DIC[
'ilDB'];
452 $query =
"DELETE FROM adv_md_record " .
453 "WHERE record_id = " .
$ilDB->quote($a_record_id,
'integer') .
" ";
456 $query =
"DELETE FROM adv_md_record_objs " .
457 "WHERE record_id = " .
$ilDB->quote($a_record_id,
'integer') .
" ";
466 $this->language_default = $language_code;
481 public function delete()
502 $this->scope_enabled = $a_stat;
511 $this->scopes = $a_scopes;
530 foreach ($this->scopes as $scope) {
531 $ref_ids[] = $scope->getRefId();
546 $ilDB = $DIC[
'ilDB'];
549 $next_id =
$ilDB->nextId(
'adv_md_record');
551 $query =
"INSERT INTO adv_md_record (record_id,import_id,active,title,description,parent_obj,lang_default) " .
553 $ilDB->quote($next_id,
'integer') .
", " .
554 $this->db->quote($this->
getImportId(),
'text') .
", " .
555 $this->db->quote($this->
isActive(),
'integer') .
", " .
556 $this->db->quote($this->
getTitle(),
'text') .
", " .
562 $this->record_id = $next_id;
566 $query =
"UPDATE adv_md_record " .
567 "SET import_id = " . $this->db->quote($this->
generateImportId(),
'text') .
" " .
568 "WHERE record_id = " . $this->db->quote($this->record_id,
'integer') .
" ";
575 $ilDB = $DIC[
'ilDB'];
577 $query =
"INSERT INTO adv_md_record_objs (record_id,obj_type,sub_type,optional) " .
579 $this->db->quote($this->
getRecordId(),
'integer') .
", " .
580 $this->db->quote($type[
"obj_type"],
'text') .
", " .
581 $this->db->quote($type[
"sub_type"],
'text') .
", " .
582 $this->db->quote($type[
"optional"],
'integer') .
" " .
603 $ilDB = $DIC[
'ilDB'];
605 $query =
"UPDATE adv_md_record " .
606 "SET active = " . $this->db->quote($this->
isActive(),
'integer') .
", " .
607 "title = " . $this->db->quote($this->
getTitle(),
'text') .
", " .
608 "description = " . $this->db->quote($this->
getDescription(),
'text') .
", " .
611 "WHERE record_id = " . $this->db->quote($this->
getRecordId(),
'integer') .
" ";
615 $query =
"DELETE FROM adv_md_record_objs " .
616 "WHERE record_id = " . $this->db->quote($this->
getRecordId(),
'integer') .
" ";
621 $query =
"INSERT INTO adv_md_record_objs (record_id,obj_type,sub_type,optional) " .
623 $this->db->quote($this->
getRecordId(),
'integer') .
", " .
624 $this->db->quote($type[
"obj_type"],
'text') .
", " .
625 $this->db->quote($type[
"sub_type"],
'text') .
", " .
626 $this->db->quote($type[
"optional"],
'integer') .
" " .
657 $this->global_position = $position;
689 $this->active = $a_active;
712 $this->title = $a_title;
735 $this->description = $a_description;
758 $this->import_id = $a_id_string;
781 $this->obj_types = $a_obj_types;
793 $this->obj_types[] = array(
794 "obj_type" => $a_obj_type,
795 "sub_type" => $a_sub_type,
796 "optional" => (
bool) $a_optional
808 return $this->obj_types ? $this->obj_types : array();
820 if ($t[
"obj_type"] == $a_obj_type &&
821 $t[
"sub_type"] == $a_sub_type) {
830 $this->parent_obj = $a_obj_id;
855 $translations->toXML($writer);
858 $optional = array(
"optional" => $obj_type[
"optional"]);
859 if ($obj_type[
"sub_type"] ==
"") {
860 $writer->
xmlElement(
'ObjectType', $optional, $obj_type[
"obj_type"]);
862 $writer->
xmlElement(
'ObjectType', $optional, $obj_type[
"obj_type"] .
":" . $obj_type[
"sub_type"]);
879 include_once(
'Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php');
881 $definition->toXML($writer);
897 $ilDB = $DIC[
'ilDB'];
899 $query =
"SELECT * FROM adv_md_record " .
900 "WHERE record_id = " . $this->db->quote($this->
getRecordId(),
'integer') .
" ";
911 $query =
"SELECT * FROM adv_md_record_objs " .
912 "WHERE record_id = " . $this->db->quote($this->
getRecordId(),
'integer') .
" ";
915 $this->obj_types[] = array(
916 "obj_type" => $row->obj_type,
917 "sub_type" => $row->sub_type,
918 "optional" => (
bool) $row->optional
922 $query =
'SELECT scope_id FROM adv_md_record_scope ' .
923 'WHERE record_id = ' .
$ilDB->quote($this->record_id);
925 $this->scope_enabled =
false;
928 $this->scope_enabled =
true;
964 public static function saveObjRecSelection($a_obj_id, $a_sub_type =
"", array $a_records = null, $a_delete_before =
true)
968 $ilDB = $DIC[
'ilDB'];
970 if ($a_sub_type ==
"") {
974 if ((
bool) $a_delete_before) {
975 $ilDB->manipulate(
"DELETE FROM adv_md_obj_rec_select WHERE " .
976 " obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
977 " AND sub_type = " .
$ilDB->quote($a_sub_type,
"text"));
980 if (is_array($a_records)) {
981 foreach ($a_records as $r) {
983 $ilDB->manipulate(
"INSERT INTO adv_md_obj_rec_select " .
984 "(obj_id, rec_id, sub_type) VALUES (" .
985 $ilDB->quote($a_obj_id,
"integer") .
"," .
986 $ilDB->quote($r,
"integer") .
"," .
987 $ilDB->quote($a_sub_type,
"text") .
1004 $ilDB = $DIC[
'ilDB'];
1006 if ($a_sub_type ==
"") {
1011 $set =
$ilDB->query(
1012 $r =
"SELECT * FROM adv_md_obj_rec_select " .
1013 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer") .
1014 " AND sub_type = " .
$ilDB->quote($a_sub_type,
"text")
1016 while ($rec =
$ilDB->fetchAssoc($set)) {
1017 $recs[] = $rec[
"rec_id"];
1029 public function _clone(array &$a_fields_map, $a_parent_obj_id = null)
1031 $new_obj =
new self();
1032 $new_obj->setActive($this->
isActive());
1033 $new_obj->setTitle($this->
getTitle());
1035 $new_obj->setParentObject($a_parent_obj_id
1042 include_once(
'Services/AdvancedMetaData/classes/class.ilAdvancedMDFieldDefinition.php');
1044 $new_def = $definition->_clone($new_obj->getRecordId());
1045 $a_fields_map[$definition->getFieldId()] = $new_def->getFieldId();
1049 $record_translation->cloneRecord($new_obj->getRecordId());
1065 $sel = array_intersect(
1072 foreach (self::_getRecords() as $record) {
1074 if ($record->getParentObject()) {
1079 if (!$record->isActive()) {
1084 foreach ($record->getAssignedObjectTypes() as $item) {
1085 if ($item[
"obj_type"] == $obj_type &&
1086 $item[
"sub_type"] == $a_sub_type) {
1088 if (!$item[
"optional"]) {
1089 $res[] = $record->getRecordId();
1092 elseif (in_array($record->getRecordId(), $sel)) {
1093 $res[] = $record->getRecordId();
Scope restrictions for advanced md records.
static deleteByRecordI($a_record_id)
delete by record id
setScopes(array $a_scopes)
Set scopes.
xmlStartTag($tag, $attrs=null, $empty=false, $encode=true, $escape=true)
Writes a starttag.
static getPossibleRemoteTypes($a_with_captions=false)
Get all possible remote object types.
static _getRecords()
Get records.
static ecsConfigured()
Checks if an ecs server is configured.
getScopeRefIds()
Get scope gef_ids.
static getSharedRecords($a_obj1_id, $a_obj2_id, $a_sub_type="-")
Get shared records.
getDescription()
get description
setActive($a_active)
Set active.
static _getActiveSearchableRecords()
Get active searchable records.
appendAssignedObjectType($a_obj_type, $a_sub_type, $a_optional=false)
append assigned object types
static isFilteredByScope($a_ref_id, array $scopes)
Check if a given ref id is not filtered by scope restriction.
static saveObjRecSelection($a_obj_id, $a_sub_type="", array $a_records=null, $a_delete_before=true)
Save repository object record selection.
xmlEndTag($tag)
Writes an endtag.
static _getSelectedRecordsByObject($a_obj_type, $a_ref_id, $a_sub_type="")
Get selected records by object.
isActive()
Check if record is active.
setDescription($a_description)
set description
static _delete($a_record_id)
Delete record and all related data.
setGlobalPosition(int $position)
Set global position.
toXML(ilXmlWriter $writer)
To Xml.
static _getInstanceByRecordId($a_record_id)
Get instance by record id.
enableScope($a_stat)
Enable scope restrictions.
foreach($_POST as $key=> $value) $res
static _lookupObjId($a_id)
getRecordId()
Get record id.
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
__construct($a_record_id=0)
Singleton constructor To create an array of new records (without saving them) call the constructor di...
validate()
Validate settings.
setDefaultLanguage(string $language_code)
getAssignedObjectTypes()
Get assigned object types.
static _getAllRecordsByObjectType()
Get records by obj_type Note: this returns only records with no sub types! public.
setImportId($a_id_string)
set import id
static _lookupTitle($a_record_id)
Lookup title.
static _lookupType($a_id, $a_reference=false)
lookup object type
static _getActivatedRecordsByObjectType($a_obj_type, $a_sub_type="", $a_only_optional=false)
Get activated records by object type.
xmlElement($tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setTitle($a_title)
Set title.
enabledScope()
Is scope enabled.
read()
read record and assiged object types
static _getAssignableObjectTypes($a_include_text=false)
Get assignable object type.
setAssignedObjectTypes($a_obj_types)
Set assigned object types.
getImportId()
get import id
static _getActivatedObjTypes()
get activated obj types
isAssignedObjectType($a_obj_type, $a_sub_type)
Is assigned object type?
_clone(array &$a_fields_map, $a_parent_obj_id=null)
Clone record.
setParentObject($a_obj_id)
static getInstancesByRecordId($a_record_id, $a_only_searchable=false, string $language='')
Get definitions by record id.
static getObjRecSelection($a_obj_id, $a_sub_type="")
Get repository object record selection.
static _lookupContainerSetting($a_id, $a_keyword, $a_default_value=null)
Lookup a container setting.
static _lookupRecordIdByImportId($a_ilias_id)
Lookup record Id by import id.
generateImportId()
generate unique record id
static getInstanceByRecordId(int $record_id)