19 declare(strict_types=1);
113 protected string $operator =
'';
125 $this->db = $DIC->database();
126 $this->
lng = $DIC->language();
127 $this->objDefinition = $DIC[
'objDefinition'];
128 $this->tree = $DIC->repositoryTree();
129 $this->
logger = $DIC->logger()->ac();
130 $this->validation =
true;
135 self::$cond_for_target_cache = [];
136 self::$cond_target_rows = [];
144 return $a_type ===
'st';
150 public static function lookupEffectiveHiddenStatusByTarget(
int $a_target_ref_id):
bool 154 $obj_definition = $DIC[
'objDefinition'];
155 $tree = $DIC->repositoryTree();
158 $parent_ref_id = $tree->
getParentId($a_target_ref_id);
162 $class = $obj_definition->getClassName($parent_type);
163 $class_name =
"il" . $class .
"ConditionController";
164 $location = $obj_definition->getLocation($parent_type);
167 if ($class !==
"" && is_file(
$location .
"/class." . $class_name .
".php")) {
169 $controller =
new $class_name();
170 if ($controller->isContainerConditionController($parent_ref_id)) {
171 return (
bool) $controller->getConditionSetForRepositoryObject($a_target_ref_id)->getHiddenStatus();
174 return self::lookupPersistedHiddenStatusByTarget($a_target_ref_id);
181 $ilDB = $DIC->database();
183 $query =
'SELECT hidden_status FROM conditions ' .
184 'WHERE target_ref_id = ' .
$ilDB->quote($a_target_ref_id,
'integer');
187 return (
bool) $row->hidden_status;
210 $ilDB = $DIC[
'ilDB'];
212 $query =
"SELECT DISTINCT target_ref_id ref FROM conditions ";
216 $ref_ids[] = (
int) $row->ref;
230 $ilDB = $DIC[
'ilDB'];
232 $query =
"DELETE FROM conditions " .
233 "WHERE target_ref_id = " .
$ilDB->quote($a_target_ref_id,
'integer') .
" " .
234 "AND target_type != 'st' ";
241 $this->condition_reference_type = $a_type;
251 $this->error_message = $a_msg;
261 $this->target_ref_id = $a_target_ref_id;
271 $this->target_obj_id = $a_target_obj_id;
284 $this->target_type = $a_target_type;
297 $this->trigger_ref_id = $a_trigger_ref_id;
307 $this->trigger_obj_id = $a_trigger_obj_id;
320 $this->trigger_type = $a_trigger_type;
333 $this->
operator = $a_operator;
338 return $this->operator;
343 $this->value = $a_value;
356 $this->obligatory = $a_obl;
369 $this->hidden_status = $a_status;
379 $this->validation = $a_validate;
384 $trigger_types = array(
'crs',
'exc',
'tst',
'sahs',
'svy',
'lm',
'iass',
'prg',
'copa',
'lti',
'cmix');
389 foreach ($this->objDefinition->getAllRepositoryTypes() as $t) {
391 $trigger_types[] = $t;
395 foreach ($this->objDefinition->getPlugins() as $p_type => $p_info) {
397 $name =
'ilObj' . $p_info[
'class_name'] .
'Access';
399 if ($reflection->implementsInterface(
'ilConditionHandling')) {
400 $trigger_types[] = $p_type;
403 $this->
logger->warning(
'Cannot create instance for ' . $name);
404 $this->
logger->warning($e->getMessage());
407 $active_triggers = array();
408 foreach ($trigger_types as $type) {
410 $active_triggers[] = $type;
413 return $active_triggers;
423 $objDefinition = $DIC[
'objDefinition'];
425 if ($a_type ===
'crsg') {
426 return [
'not_member'];
431 $full_class =
"ilObj" . $class .
"Access";
433 if ($reflection->implementsInterface(
'ilConditionHandling')) {
434 $operators = call_user_func(
435 array($full_class,
'getConditionOperators'),
447 array_unshift($operators, self::OPERATOR_LP);
459 $next_id = $this->db->nextId(
'conditions');
460 $query =
'INSERT INTO conditions (condition_id,target_ref_id,target_obj_id,target_type,' .
461 'trigger_ref_id,trigger_obj_id,trigger_type,operator,value,ref_handling,obligatory,hidden_status) ' .
463 $this->db->quote($next_id,
'integer') .
',' .
470 $this->db->quote($this->
getOperator(),
'text') .
"," .
471 $this->db->quote($this->
getValue(),
'text') .
", " .
477 $res = $this->db->manipulate($query);
479 if ($this->validation && !$this->
validate()) {
488 $query =
"SELECT * FROM conditions " .
489 "WHERE target_ref_id = " . $this->db->quote($this->
getTargetRefId(),
'integer') .
" " .
490 "AND target_obj_id = " . $this->db->quote($this->
getTargetObjId(),
'integer') .
" " .
491 "AND trigger_ref_id = " . $this->db->quote($this->
getTriggerRefId(),
'integer') .
" " .
492 "AND trigger_obj_id = " . $this->db->quote($this->
getTriggerObjId(),
'integer') .
" " .
493 "AND operator = " . $this->db->quote($this->
getOperator(),
'text');
494 $res = $this->db->query($query);
495 return (
bool)
$res->numRows();
500 $query =
"UPDATE conditions SET " .
501 "target_ref_id = " . $this->db->quote($this->
getTargetRefId(),
'integer') .
", " .
502 "operator = " . $this->db->quote($this->
getOperator(),
'text') .
", " .
503 "value = " . $this->db->quote($this->
getValue(),
'text') .
", " .
505 'obligatory = ' . $this->db->quote($this->
getObligatory(),
'integer') .
' ' .
506 "WHERE condition_id = " . $this->db->quote($a_id,
'integer');
507 $res = $this->db->manipulate($query);
512 $query =
'UPDATE conditions SET ' .
513 'hidden_status = ' . $this->db->quote($a_status,
'integer') .
' ' .
514 'WHERE target_ref_id = ' . $this->db->quote($this->
getTargetRefId(),
'integer');
515 $this->db->manipulate($query);
525 $ilDB = $DIC->database();
526 $query =
"UPDATE conditions SET " .
527 'obligatory = ' .
$ilDB->quote($a_status,
'integer') .
' ' .
528 "WHERE condition_id = " .
$ilDB->quote($a_id,
'integer');
536 public function delete(
int $a_ref_id):
void 538 $query =
"DELETE FROM conditions WHERE " .
539 "target_ref_id = " . $this->db->quote($a_ref_id,
'integer') .
" " .
540 "OR trigger_ref_id = " . $this->db->quote($a_ref_id,
'integer');
541 $res = $this->db->manipulate($query);
550 $query =
"DELETE FROM conditions WHERE " .
551 "target_obj_id = " . $this->db->quote($a_obj_id,
'integer') .
" " .
552 "OR trigger_obj_id = " . $this->db->quote($a_obj_id,
'integer');
553 $res = $this->db->manipulate($query);
558 $query =
"DELETE FROM conditions " .
559 "WHERE condition_id = " . $this->db->quote($a_id,
'integer');
560 $res = $this->db->manipulate($query);
569 $db = $DIC->database();
571 $query =
'select count(*) num from conditions ' .
576 return (
int) $row->num;
588 $ilDB = $DIC[
'ilDB'];
590 $query =
"SELECT * FROM conditions " .
591 "WHERE trigger_obj_id = " .
$ilDB->quote($a_trigger_id,
'integer') .
" " .
592 " AND trigger_type = " .
$ilDB->quote($a_trigger_obj_type,
'text');
598 $tmp_array[
'id'] = (
int) $row->condition_id;
599 $tmp_array[
'target_ref_id'] = (
int) $row->target_ref_id;
600 $tmp_array[
'target_obj_id'] = (
int) $row->target_obj_id;
601 $tmp_array[
'target_type'] = (
string) $row->target_type;
602 $tmp_array[
'trigger_ref_id'] = (
int) $row->trigger_ref_id;
603 $tmp_array[
'trigger_obj_id'] = (
int) $row->trigger_obj_id;
604 $tmp_array[
'trigger_type'] = (string) $row->trigger_type;
605 $tmp_array[
'operator'] = (
string) $row->operator;
606 $tmp_array[
'value'] = (string) $row->value;
607 $tmp_array[
'ref_handling'] = (
int) $row->ref_handling;
608 $tmp_array[
'obligatory'] = (bool) $row->obligatory;
609 $tmp_array[
'hidden_status'] = (
bool) $row->hidden_status;
610 $conditions[] = $tmp_array;
620 public static function _getEffectiveConditionsOfTarget(
621 int $a_target_ref_id,
622 int $a_target_obj_id,
623 string $a_target_type =
"" 627 if ($a_target_ref_id === 0) {
631 $obj_definition = $DIC[
"objDefinition"];
632 $tree = $DIC->repositoryTree();
635 if ($a_target_type ===
"") {
640 $parent_ref_id = $tree->
getParentId($a_target_ref_id);
644 $class = $obj_definition->getClassName($parent_type);
645 $class_name =
"il" . $class .
"ConditionController";
646 $location = $obj_definition->getLocation($parent_type);
649 if ($class !==
"" && is_file(
$location .
"/class." . $class_name .
".php")
652 $controller =
new $class_name();
653 if ($controller->isContainerConditionController($parent_ref_id)) {
655 $set = $controller->getConditionSetForRepositoryObject($a_target_ref_id);
659 foreach ($set->getConditions() as
$c) {
660 $obligatory = $set->getAllObligatory() ||
$c->getObligatory();
661 $trigger =
$c->getTrigger();
663 "target_ref_id" => $a_target_ref_id,
664 "target_obj_id" => $a_target_obj_id,
665 "target_type" => $a_target_type,
666 "trigger_ref_id" => $trigger->getRefId(),
667 "trigger_obj_id" => $trigger->getObjId(),
668 "trigger_type" => $trigger->getType(),
669 "operator" =>
$c->getOperator(),
670 "value" =>
$c->getValue(),
673 "num_obligatory" => $set->getNumObligatory(),
674 "hidden_status" => $set->getHiddenStatus()
681 return self::_getPersistedConditionsOfTarget($a_target_ref_id, $a_target_obj_id, $a_target_type);
689 int $a_target_ref_id,
690 int $a_target_obj_id,
691 string $a_target_type =
"" 695 $ilDB = $DIC[
'ilDB'];
698 if ($a_target_type ===
"") {
703 if (isset(self::$cond_for_target_cache[$a_target_ref_id .
":" . $a_target_obj_id .
":" .
705 return self::$cond_for_target_cache[$a_target_ref_id .
":" . $a_target_obj_id .
":" .
710 if (isset(self::$cond_target_rows[$a_target_type .
":" . $a_target_obj_id])) {
711 $rows = self::$cond_target_rows[$a_target_type .
":" . $a_target_obj_id];
714 $query =
"SELECT * FROM conditions " .
715 "WHERE target_obj_id = " .
$ilDB->quote($a_target_obj_id,
'integer') .
" " .
716 " AND target_type = " .
$ilDB->quote($a_target_type,
'text');
722 $item[
'condition_id'] = (
int) $row[
'condition_id'];
723 $item[
'target_ref_id'] = (
int) $row[
'target_ref_id'];
724 $item[
'target_obj_id'] = (
int) $row[
'target_obj_id'];
725 $item[
'trigger_ref_id'] = (
int) $row[
'trigger_ref_id'];
726 $item[
'trigger_obj_id'] = (
int) $row[
'trigger_obj_id'];
727 $item[
'target_type'] = (string) $row[
'target_type'];
728 $item[
'trigger_type'] = (string) $row[
'trigger_type'];
729 $item[
'operator'] = (string) $row[
'operator'];
730 $item[
'value'] = (string) $row[
'value'];
731 $item[
'ref_handling'] = (
int) $row[
'ref_handling'];
732 $item[
'obligatory'] = (bool) $row[
'obligatory'];
733 $item[
'num_obligatory'] = (
int) $row[
'num_obligatory'];
734 $item[
'hidden_status'] = (bool) $row[
'hidden_status'];
742 foreach ($rows as $row) {
743 if (($row[
"ref_handling"] == self::UNIQUE_CONDITIONS) && $row[
"target_ref_id"] != $a_target_ref_id) {
747 $row[
"id"] = $row[
"condition_id"];
748 $conditions[] = $row;
751 self::$cond_for_target_cache[$a_target_ref_id .
":" . $a_target_obj_id .
":" .
752 $a_target_type] = $conditions;
763 $ilDB = $DIC[
'ilDB'];
765 if (is_array($a_obj_ids) && count($a_obj_ids) > 0) {
766 $res =
$ilDB->query(
"SELECT * FROM conditions " .
767 "WHERE " .
$ilDB->in(
"target_obj_id", $a_obj_ids,
false,
"integer") .
768 " AND target_type = " .
$ilDB->quote($a_type,
'text'));
772 $item[
'condition_id'] = (
int) $row[
'condition_id'];
773 $item[
'target_ref_id'] = (
int) $row[
'target_ref_id'];
774 $item[
'target_obj_id'] = (
int) $row[
'target_obj_id'];
775 $item[
'trigger_ref_id'] = (
int) $row[
'trigger_ref_id'];
776 $item[
'trigger_obj_id'] = (
int) $row[
'trigger_obj_id'];
777 $item[
'target_type'] = (string) $row[
'target_type'];
778 $item[
'trigger_type'] = (string) $row[
'trigger_type'];
779 $item[
'operator'] = (string) $row[
'operator'];
780 $item[
'value'] = (string) $row[
'value'];
781 $item[
'ref_handling'] = (
int) $row[
'ref_handling'];
782 $item[
'obligatory'] = (bool) $row[
'obligatory'];
783 $item[
'num_obligatory'] = (
int) $row[
'num_obligatory'];
784 $item[
'hidden_status'] = (bool) $row[
'hidden_status'];
785 self::$cond_target_rows[$a_type .
":" . $row[
"target_obj_id"]][] = $item;
788 foreach ($a_obj_ids as $obj_id) {
789 if (!isset(self::$cond_target_rows[$a_type .
":" . $obj_id])) {
790 self::$cond_target_rows[$a_type .
":" . $obj_id] = array();
800 $ilDB = $DIC[
'ilDB'];
802 $query =
"SELECT * FROM conditions " .
803 "WHERE condition_id = " .
$ilDB->quote($a_id,
'integer');
807 $tmp_array[
'id'] = (
int) $row->condition_id;
808 $tmp_array[
'target_ref_id'] = (
int) $row->target_ref_id;
809 $tmp_array[
'target_obj_id'] = (
int) $row->target_obj_id;
810 $tmp_array[
'target_type'] = (
string) $row->target_type;
811 $tmp_array[
'trigger_ref_id'] = (
int) $row->trigger_ref_id;
812 $tmp_array[
'trigger_obj_id'] = (
int) $row->trigger_obj_id;
813 $tmp_array[
'trigger_type'] = (string) $row->trigger_type;
814 $tmp_array[
'operator'] = (
string) $row->operator;
815 $tmp_array[
'value'] = (string) $row->value;
816 $tmp_array[
'ref_handling'] = (
int) $row->ref_handling;
817 $tmp_array[
'obligatory'] = (bool) $row->obligatory;
818 $tmp_array[
'hidden_status'] = (
bool) $row->hidden_status;
819 $tmp_array[
'num_obligatory'] = (
int) $row->num_obligatory;
834 $ilUser = $DIC[
'ilUser'];
835 $objDefinition = $DIC[
'objDefinition'];
836 $a_usr_id = $a_usr_id ?: $ilUser->getId();
839 if ($condition[
'operator'] === self::OPERATOR_LP) {
842 switch ($condition[
'trigger_type']) {
845 (
int) $condition[
'trigger_obj_id'],
846 (
string) $condition[
'operator'],
847 (
string) $condition[
'value'],
851 $class = $objDefinition->
getClassName($condition[
'trigger_type']);
853 $full_class =
"ilObj" . $class .
"Access";
855 if (!(is_a($full_class,
"ilConditionHandling",
true))) {
859 $fullfilled = call_user_func(
860 array($full_class,
'checkCondition'),
861 (
int) $condition[
'trigger_obj_id'],
862 (
string) $condition[
'operator'],
863 (
string) $condition[
'value'],
870 int $a_target_ref_id,
871 int $a_target_obj_id,
872 string $a_obj_type =
'' 874 $conditions = self::_getEffectiveConditionsOfTarget($a_target_ref_id, $a_target_obj_id);
877 foreach ($conditions as $con) {
878 if ($con[
'obligatory']) {
887 int $a_target_ref_id,
888 int $a_target_obj_id,
889 string $a_obj_type =
'' 891 $conditions = self::_getPersistedConditionsOfTarget($a_target_ref_id, $a_target_obj_id);
894 foreach ($conditions as $con) {
895 if ($con[
'obligatory']) {
907 $ilDB = $DIC[
'ilDB'];
909 $query =
'SELECT max(num_obligatory) obl from conditions WHERE ' .
910 'target_ref_id = ' .
$ilDB->quote($a_target_ref_id,
'integer') .
' ' .
911 'AND target_obj_id = ' .
$ilDB->quote($a_target_obj_id,
'integer') .
' ' .
912 'GROUP BY (num_obligatory)';
917 $obl = (
int) $row->obl;
923 int $a_target_ref_id,
924 int $a_target_obj_id,
925 string $a_target_obj_type =
'' 929 $ilDB = $DIC[
'ilDB'];
932 $all = self::_getEffectiveConditionsOfTarget($a_target_ref_id, $a_target_obj_id, $a_target_obj_type);
933 $opt = self::getEffectiveOptionalConditionsOfTarget($a_target_ref_id, $a_target_obj_id, $a_target_obj_type);
936 if (isset($all[0])) {
937 $set_obl = $all[0][
'num_obligatory'];
942 $set_obl < count($all) &&
943 $set_obl > (count($all) - count($opt) + 1)) {
948 $result = count($all) - count($opt) + 1;
950 $result = count($all);
956 int $a_target_ref_id,
957 int $a_target_obj_id,
958 string $a_target_obj_type =
'',
959 bool $a_force_update =
false 963 $ilDB = $DIC[
'ilDB'];
968 $all = self::_getPersistedConditionsOfTarget($a_target_ref_id, $a_target_obj_id, $a_target_obj_type);
969 $opt = self::getPersistedOptionalConditionsOfTarget($a_target_ref_id, $a_target_obj_id, $a_target_obj_type);
972 if (isset($all[0])) {
973 $set_obl = $all[0][
'num_obligatory'];
978 $set_obl < count($all) &&
979 $set_obl > (count($all) - count($opt) + 1)) {
984 $result = count($all) - count($opt) + 1;
986 $result = count($all);
988 if ($a_force_update) {
989 self::saveNumberOfRequiredTriggers($a_target_ref_id, $a_target_obj_id, $result);
998 $ilDB = $DIC[
'ilDB'];
1000 $query =
'UPDATE conditions ' .
1001 'SET num_obligatory = ' .
$ilDB->quote($a_num,
'integer') .
' ' .
1002 'WHERE target_ref_id = ' .
$ilDB->quote($a_target_ref_id,
'integer') .
' ' .
1003 'AND target_obj_id = ' .
$ilDB->quote($a_target_obj_id,
'integer');
1005 $ilDB->manipulate($query);
1013 int $a_target_ref_id,
1015 string $a_target_type =
"",
1020 $ilUser = $DIC[
'ilUser'];
1021 $tree = $DIC[
'tree'];
1022 $logger = $DIC->logger()->ac();
1024 $a_usr_id = $a_usr_id ?: $ilUser->getId();
1025 $conditions = self::_getEffectiveConditionsOfTarget(
1030 if (!count($conditions)) {
1039 $optional = self::getEffectiveOptionalConditionsOfTarget($a_target_ref_id, $a_target_id, $a_target_type);
1040 $num_required = self::calculateEffectiveRequiredTriggers($a_target_ref_id, $a_target_id, $a_target_type);
1042 foreach ($conditions as $condition) {
1043 if ($tree->
isDeleted($condition[
'trigger_ref_id'])) {
1046 $check = self::_checkCondition($condition, $a_usr_id);
1052 if ($condition[
'obligatory']) {
1057 return $passed >= $num_required;
1067 if ($trigger_obj !==
null && $target_obj !==
null) {
1069 $this->target_obj_id = $target_obj->getId();
1074 unset($trigger_obj, $target_obj);
1084 foreach (self::_getPersistedConditionsOfTarget($a_ref_id, $a_obj_id) as $condition) {
1085 if ($condition[
'trigger_obj_id'] == $this->target_obj_id && $condition[
'operator'] === $this->
getOperator()) {
1086 $this->circle =
true;
1090 $this->
checkCircle($condition[
'trigger_ref_id'], $condition[
'trigger_obj_id']);
1095 public static function cloneDependencies(
int $a_src_ref_id,
int $a_target_ref_id,
int $a_copy_id): void
1098 $mappings = $cwo->getMappings();
1101 $conditions = self::_getPersistedConditionsOfTarget(
1105 foreach ($conditions as $con) {
1106 if ($mappings[$con[
'trigger_ref_id']] ??
false) {
1112 $newCondition->setTargetRefId($a_target_ref_id);
1113 $newCondition->setTargetObjId($target_obj);
1114 $newCondition->setTargetType($target_typ);
1116 $trigger_ref = $mappings[$con[
'trigger_ref_id']];
1120 $newCondition->setTriggerRefId($trigger_ref);
1121 $newCondition->setTriggerObjId($trigger_obj);
1122 $newCondition->setTriggerType($trigger_typ);
1123 $newCondition->setOperator($con[
'operator']);
1124 $newCondition->setValue($con[
'value']);
1125 $newCondition->setReferenceHandlingType($con[
'ref_handling']);
1126 $newCondition->setObligatory($con[
'obligatory']);
1129 $newCondition->setHiddenStatus(self::lookupPersistedHiddenStatusByTarget($a_src_ref_id));
1131 if ($newCondition->storeCondition()) {
1135 self::saveNumberOfRequiredTriggers(
1138 $con[
'num_obligatory']
1147 self::calculatePersistedRequiredTriggers(
static array $cond_for_target_cache
enableAutomaticValidation(bool $a_validate=true)
static _hasUserCompleted(int $a_obj_id, int $a_user_id)
Lookup user object completion.
storeCondition()
store new condition in database
static _getCondition(int $a_id)
updateHiddenStatus(bool $a_status)
static isSupportedObjectType(string $type)
const OPERATOR_RESULT_RANGE_PERCENTAGE
getOperatorsByTriggerType(string $a_type)
setReferenceHandlingType(int $a_type)
static _isReferenceHandlingOptional(string $a_type)
static cloneDependencies(int $a_src_ref_id, int $a_target_ref_id, int $a_copy_id)
static _checkCondition(int $trigger_obj_id, string $operator, $value, int $a_usr_id=0)
setOperator(string $a_operator)
static lookupObligatoryConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id)
isDeleted(int $a_node_id)
This is a wrapper for isSaved() with a more useful name.
deleteByObjId(int $a_obj_id)
delete all trigger and target entries This method is called from ilObject::delete() if an object is r...
deleteCondition(int $a_id)
static updateObligatory(int $a_id, bool $a_status)
Toggle condition obligatory status.
static calculatePersistedRequiredTriggers(int $a_target_ref_id, int $a_target_obj_id, string $a_target_obj_type='', bool $a_force_update=false)
setTargetRefId(int $a_target_ref_id)
int $condition_reference_type
getObligatory()
Get obligatory status.
quote($value, string $type)
setTriggerObjId(int $a_trigger_obj_id)
checkCircle(int $a_ref_id, int $a_obj_id)
static lookupPersistedHiddenStatusByTarget(int $a_target_ref_id)
getReferenceHandlingType()
setTriggerType(string $a_trigger_type)
set trigger object type
static _lookupObjId(int $ref_id)
static saveNumberOfRequiredTriggers(int $a_target_ref_id, int $a_target_obj_id, int $a_num)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static getNumberOfConditionsOfTrigger(string $a_trigger_obj_type, int $a_trigger_id)
get all conditions of trigger object
static _enabledLearningProgress()
setTriggerRefId(int $a_trigger_ref_id)
static _checkCondition(array $condition, int $a_usr_id=0)
checks wether a single condition is fulfilled every trigger object type must implement a static metho...
static calculateEffectiveRequiredTriggers(int $a_target_ref_id, int $a_target_obj_id, string $a_target_obj_type='')
setTargetObjId(int $a_target_obj_id)
updateCondition(int $a_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
getClassName(string $obj_name)
setHiddenStatus(bool $a_status)
static preloadPersistedConditionsForTargetRecords(string $a_type, array $a_obj_ids)
static _getDistinctTargetRefIds()
static _adjustMovedObjectConditions(int $a_ref_id)
In the moment it is not allowed to create preconditions on objects that are located outside of a cour...
query(string $query)
Run a (read-only) Query on the database.
static _getPersistedConditionsOfTrigger(string $a_trigger_obj_type, int $a_trigger_id)
Get all persisted conditions of trigger object Note: This only gets persisted conditions NOT (dynamic...
static _deleteTargetConditionsByRefId(int $a_target_ref_id)
Delete conditions by target ref id Note: only conditions on the target type are deleted Conditions on...
getParentId(int $a_node_id)
get parent id of given node
const OPERATOR_ACCREDITED_OR_PASSED
setObligatory(bool $a_obl)
Set obligatory status.
const OPERATOR_NOT_FINISHED
setValue(string $a_value)
getTriggerType()
get trigger obj type
static array $cond_target_rows
static _checkAllConditionsOfTarget(int $a_target_ref_id, int $a_target_id, string $a_target_type="", int $a_usr_id=0)
checks wether all conditions of a target object are fulfilled
setTargetType(string $a_target_type)
set target object type
static getPersistedOptionalConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id, string $a_obj_type='')
static getEffectiveOptionalConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id, string $a_obj_type='')
setErrorMessage(string $a_msg)
static _getInstance(int $a_copy_id)
getLocation(string $obj_name)
ilObjectDefinition $objDefinition
static _lookupType(int $id, bool $reference=false)
const OPERATOR_NOT_MEMBER
static _getPersistedConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id, string $a_target_type="")
get all persisted conditions of target object
getTargetType()
get target obj type