19 declare(strict_types=1);
39 $res =
$ilDB->query(
'SELECT mapping_id FROM ecs_container_mapping');
53 $logger = $DIC->logger()->wsrv();
55 if (is_null(self::$cached_active_rules)) {
56 self::$cached_active_rules = self::getActiveRules();
58 foreach (self::$cached_active_rules as $rule) {
59 if ($rule->matches($a_matchable_content)) {
60 $logger->info(__METHOD__ .
': Found assignment for field type: ' . $rule->getFieldName());
61 return $rule->getContainerId();
63 $logger->error(__METHOD__ .
': Category assignment failed for field: ' . $rule->getFieldName());
66 $logger->info(__METHOD__ .
': Using default container');
74 public static function handleUpdate(
int $a_obj_id,
int $a_server_id, array $a_matchable_content): bool
78 $tree = $DIC->repositoryTree();
79 $logger = $DIC->logger()->wsrv();
81 $cat = self::getMatchingCategory($a_server_id, $a_matchable_content);
85 $all_cats = self::lookupHandledCategories();
88 foreach (array_keys($references) as
$ref_id) {
89 if ($tree->getParentId($ref_id) === $cat) {
93 $logger->info(__METHOD__ .
': Creating/Deleting references...');
96 $logger->info(__METHOD__ .
': Add new reference. STEP 1');
99 $obj_data->createReference();
100 $obj_data->putInTree($cat);
101 $obj_data->setPermissions($cat);
102 $logger->info(__METHOD__ .
': Add new reference.');
106 foreach (array_keys($references) as $ref_id) {
107 $parent = $tree->getParentId($ref_id);
108 if ($parent === $cat) {
111 if (!in_array($parent, $all_cats,
true)) {
115 $to_delete->delete();
116 $logger->write(__METHOD__ .
': Deleted deprecated reference.');
129 $ilDB = $DIC->database();
132 $res =
$ilDB->query(
"SELECT container_id FROM ecs_container_mapping ");
134 $ref_ids[] = $row->container_id;
149 "community" =>
$lng->txt(
"ecs_field_community"),
150 "part_id" =>
$lng->txt(
"ecs_field_part_id"),
151 "type" =>
$lng->txt(
"type")
158 foreach ($course_fields as $field) {
159 $options[$field] =
$lng->txt(
"obj_rcrs") .
" - " .
$lng->txt(
"ecs_field_" . $field);
static _getAllReferences(int $id)
get all reference ids for object ID
Defines a rule for the assignment of ECS remote courses to categories.
static _lookupObjId(int $ref_id)
static getPossibleFields()
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getActiveRules()
get active rules
static getInstanceByServerId(int $a_server_id)
Get singleton instance per server.
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
static array $cached_active_rules
static getMatchingCategory(int $a_server_id, array $a_matchable_content)
get matching category
static lookupHandledCategories()
static handleUpdate(int $a_obj_id, int $a_server_id, array $a_matchable_content)
Handle update of ecs content and create references.
static _getOptionalECourseFields()
get optional econtent fields These fields might be mapped against AdvancedMetaData field definitions ...