19 declare(strict_types=1);
39 $obj_deleted = $parameter[
'object'];
40 $obj_ref_id = (
int) $obj_deleted->getRefId();
47 if (!is_null($parent_lso)) {
48 $this->
deleteLSOItem($obj_ref_id, (
int) $parent_lso[
'ref_id']);
57 $obj_ref_id = (
int) $parameter[
'ref_id'];
58 $old_parent_ref_id = (
int) $parameter[
'old_parent_ref_id'];
65 if ($old_parent_ref_id) {
72 if (empty($ref_id) || !$this->tree->isInTree($ref_id)) {
78 protected function deleteLSOItem(
int $obj_ref_id,
int $parent_lso_ref_id): void
80 $lso = $this->getInstanceByRefId($parent_lso_ref_id);
81 $lso->getStateDB()->deleteForItem(
89 $lso = $this->getInstanceByObjId($obj_id);
90 $db = $lso->getStateDB();
91 $db->deleteFor($lso->getRefId(), [$usr_id]);
99 $new_lso = $this->getInstanceByRefId(
102 $post_condition_db = $new_lso->getDI()[
'db.postconditions'];
103 $post_condition = current($post_condition_db->select([$origin_obj->
getRefId()]))
105 $post_condition_db->upsert([$post_condition]);
114 if($child_ref_id === 0) {
118 foreach ($this->tree->getPathFull($child_ref_id) as $hop) {
119 if ($hop[
'type'] ===
'lso') {
140 throw new LogicException(
"Object type should be ilObjLearningSequence. Actually is " . get_class($obj));
149 $ref_id = array_shift($refs);
155 throw new LogicException(
"Object type should be ilObjLearningSequence. Actually is " . get_class($obj));
handleClonedObject(ilObject $new_obj, ilObject $origin_obj)
getRefIdsOfObjId(int $triggerer_obj_id)
getParentLSOInfo(int $child_ref_id)
get the LSO up from $child_ref_id
static _getAllReferences(int $id)
get all reference ids for object ID
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
handleObjectToTrash(array $parameter)
handleParticipantDeletion(int $obj_id, int $usr_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
deleteLSOItem(int $obj_ref_id, int $parent_lso_ref_id)
handleObjectDeletion(array $parameter)
Find out, if a sub object is about to be deleted.
isExistingObject(int $ref_id)
__construct(ilTree $tree)