19 declare(strict_types=1);
73 $this->
ctrl = $DIC->ctrl();
74 $this->
lng = $DIC->language();
75 $this->
lng->loadLanguageModule(
'rbac');
76 $this->
lng->loadLanguageModule(
'cond');
77 $this->tpl = $DIC->ui()->mainTemplate();
78 $this->tree = $DIC->repositoryTree();
79 $this->
access = $DIC->access();
80 $this->
toolbar = $DIC->toolbar();
81 $this->conditionUtil = $DIC->conditions()->util();
83 $this->
http = $DIC->http();
85 $this->ui_factory = $DIC->ui()->factory();
86 $this->ui_renderer = $DIC->ui()->renderer();
90 if ($target_obj !==
null) {
102 if ($this->
http->wrapper()->query()->has(
'condition_id')) {
103 return $this->
http->wrapper()->query()->retrieve(
113 if ($this->
http->wrapper()->post()->has(
'conditions')) {
114 return SplFixedArray::fromArray(
115 $this->
http->wrapper()->post()->retrieve(
117 $this->
refinery->kindlyTo()->listOf(
123 return new SplFixedArray(0);
128 if ($this->
http->wrapper()->post()->has(
'item_ids')) {
129 return SplFixedArray::fromArray(
130 $this->
http->wrapper()->post()->retrieve(
132 $this->
refinery->kindlyTo()->listOf(
138 return new SplFixedArray(0);
143 if ($this->
http->wrapper()->post()->has(
'obl')) {
144 return SplFixedArray::fromArray(
145 $this->
http->wrapper()->post()->retrieve(
147 $this->
refinery->kindlyTo()->listOf(
153 return new SplFixedArray(0);
158 return $this->
http->wrapper()->post()->retrieve(
161 $this->refinery->kindlyTo()->string(),
162 $this->
refinery->always(self::LIST_MODE_UNDEFINED)
169 if ($this->
http->wrapper()->query()->has(
'source_id')) {
170 return $this->
http->wrapper()->query()->retrieve(
178 public static function translateOperator(
int $a_obj_id,
string $a_operator,
string $value =
''): string
182 $lng = $DIC->language();
183 switch ($a_operator) {
192 $value_arr = unserialize($value);
193 if ($value_arr !==
false) {
198 $postfix .= $value_arr[
'min_percentage'] .
' - ' . $value_arr[
'max_percentage'] .
'%';
200 return $lng->
txt(
'condition_' . $a_operator) . $postfix;
204 return $lng->
txt(
'condition_' . $a_operator);
232 if (!$this->
access->checkAccess(
'write',
'', $this->getTargetRefId())) {
233 $ilErr->raiseError($this->
lng->txt(
'permission_denied'),
$ilErr->WARNING);
236 $next_class = $this->
ctrl->getNextClass($this);
237 $cmd = $this->
ctrl->getCmd();
238 switch ($next_class) {
250 $this->automatic_validation = $a_status;
260 $this->target_id = $a_target_id;
270 $this->target_ref_id = $a_target_ref_id;
280 $this->target_type = $a_target_type;
290 $this->target_title = $a_target_title;
310 string $list_mode = self::LIST_MODE_ALL
318 $form->setFormAction($this->
ctrl->getFormAction($this,
'listConditions'));
319 $form->setTitle($this->
lng->txt(
'precondition_obligatory_settings'));
320 $form->addCommandButton(
'saveObligatorySettings', $this->
lng->txt(
'save'));
324 $hide->setValue(
"1");
325 $hide->setInfo($this->
lng->txt(
'rbac_precondition_hide_info'));
326 $form->addItem($hide);
329 $form->addItem($mode);
332 $mall =
new ilRadioOption($this->
lng->txt(
"rbac_precondition_mode_all"),
"all");
333 $mall->
setInfo($this->
lng->txt(
"rbac_precondition_mode_all_info"));
334 $mode->addOption($mall);
336 if (count($all) > 1) {
338 $max = count($all) - 1;
340 $msubset =
new ilRadioOption($this->
lng->txt(
"rbac_precondition_mode_subset"),
"subset");
341 $msubset->
setInfo($this->
lng->txt(
"rbac_precondition_mode_subset_info"));
342 $mode->addOption($msubset);
345 $obl->
setInfo($this->
lng->txt(
'precondition_num_optional_info'));
351 $obl->setValue($num_required > 0 ? (
string) $num_required :
null);
352 $obl->setRequired(
true);
354 $obl->setMinValue($min);
355 $obl->setMaxValue($max);
356 $msubset->addSubItem($obl);
360 $old_mode->setValue($list_mode);
361 $form->addItem($old_mode);
369 if (!$condition_id) {
370 $this->tpl->setOnScreenMessage(
'failure',
"Missing id: condition_id");
374 $this->
ctrl->setParameter($this,
'condition_id', $condition_id);
378 $form = $this->
initFormCondition($condition[
'trigger_ref_id'], $condition_id,
'edit');
380 $this->tpl->setContent($form->getHTML());
386 if (!$condition_id) {
387 $this->tpl->setOnScreenMessage(
'failure',
"Missing id: condition_id");
396 $condition[
'trigger_ref_id'],
401 if (!$form->checkInput()) {
402 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
407 $condition_handler->setOperator((
string) $form->getInput(
'operator'));
408 $condition_handler->setObligatory((
bool) $form->getInput(
'obligatory'));
410 $condition_handler->setValue(
'');
413 $condition_handler->setReferenceHandlingType((
int) $form->getInput(
'ref_handling'));
420 $condition_handler->updateCondition($condition[
'id']);
423 if ($condition[
'trigger_type'] ===
'sahs') {
425 $collection = $olp->getCollectionInstance();
427 $collection->delete();
430 if (count($item_ids)) {
431 $collection->activateEntries($item_ids->toArray());
435 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
436 $this->
ctrl->redirect($this,
'listConditions');
450 count($conditions) === 1 &&
451 count($optional_conditions) > 0
454 foreach ($conditions as $condition) {
463 $num_obligatory == count($conditions)
466 foreach ($conditions as $condition) {
470 $num_obligatory > count($conditions)
476 count($conditions) - 1
483 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"condition_select_object"));
486 $exp->setTypeWhiteList(array_merge(
488 array(
"root",
"cat",
"grp",
"fold",
"crs",
"prg")
494 if (!$exp->handleCommand()) {
495 $this->tpl->setContent($exp->getHTML());
503 $this->tpl->setOnScreenMessage(
'failure',
"Missing id: condition_id");
510 $this->tpl->setContent($form->getHTML());
520 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_condition_selected'));
526 if (!$form->checkInput()) {
527 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
532 $this->ch_obj->setTargetObjId($this->
getTargetId());
537 $this->ch_obj->setReferenceHandlingType((
int) $form->getInput(
'ref_handling'));
546 if ($trigger_obj !==
null) {
547 $this->ch_obj->setTriggerRefId($trigger_obj->getRefId());
548 $this->ch_obj->setTriggerObjId($trigger_obj->getId());
549 $this->ch_obj->setTriggerType($trigger_obj->getType());
551 $this->ch_obj->setOperator($form->getInput(
'operator'));
552 $this->ch_obj->setObligatory((
bool) $form->getInput(
'obligatory'));
554 $this->ch_obj->setValue(
'');
557 if ($this->ch_obj->getTriggerType() ===
'sahs') {
559 $collection = $olp->getCollectionInstance();
561 $collection->delete();
565 if (count($items_ids)) {
566 $collection->activateEntries($items_ids->toArray());
570 if (!$this->ch_obj->storeCondition()) {
571 $this->tpl->setOnScreenMessage(
'failure', $this->ch_obj->getErrorMessage(),
true);
573 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'added_new_condition'),
true);
575 $this->
ctrl->redirect($this,
'listConditions');
586 if ($condition[
'operator'] ===
'not_member') {
590 $cond[] = $condition;
597 int $a_condition_id = 0,
598 string $a_mode =
'add' 605 $this->
ctrl->setParameter($this,
'source_id', $a_source_id);
606 $form->setFormAction($this->
ctrl->getFormAction($this));
610 $form->addItem($info_source);
614 $form->addItem($info_target);
617 if ($a_condition_id) {
618 $obl->setValue((
string) (
bool) $condition[
'obligatory']);
622 $form->addItem($obl);
627 if ($a_mode ===
'add') {
628 $operators[
''] = $this->
lng->txt(
'select_one');
630 foreach ($ch_obj->getOperatorsByTriggerType($trigger_type) as $operator) {
631 $operators[$operator] = $this->
lng->txt(
'condition_' . $operator);
633 $sel->setValue($condition[
'operator'] ??
'');
634 $sel->setOptions($operators);
635 $sel->setRequired(
true);
636 $form->addItem($sel);
643 $this->
lng->txt(
'cond_ref_shared'),
644 (string) ilConditionHandler::SHARED_CONDITIONS
646 $rad_opt->addOption($opt2);
649 $this->
lng->txt(
'cond_ref_unique'),
652 $rad_opt->addOption($opt1);
654 $form->addItem($rad_opt);
658 if ($trigger_type ===
'sahs') {
659 $this->
lng->loadLanguageModule(
'trac');
662 $cus->
setInfo($this->
lng->txt(
'trac_lp_determination_info_sco'));
663 $cus->setRequired(
true);
666 $collection = $olp->getCollectionInstance();
669 foreach ($collection->getPossibleItems() as $item_id => $sahs_item) {
671 if ($collection->isAssignedEntry($item_id)) {
672 $checked[] = $item_id;
674 $cus->addOption($sco);
677 $cus->setValue($checked);
678 $form->addItem($cus);
683 $form->setTitle($this->
lng->txt(
'rbac_edit_condition'));
684 $form->addCommandButton(
'updateCondition', $this->
lng->txt(
'save'));
685 $form->addCommandButton(
'listConditions', $this->
lng->txt(
'cancel'));
690 $form->setTitle($this->
lng->txt(
'add_condition'));
691 $form->addCommandButton(
'assign', $this->
lng->txt(
'save'));
692 $form->addCommandButton(
'selector', $this->
lng->txt(
'back'));
705 $allow_optional_preconditions = (bool) count($optional_conditions);
707 new ConditionTriggerProvider(
712 $allow_optional_preconditions
716 $add_condition_trigger_button = $this->ui_factory->button()->standard(
717 $this->
lng->txt(
'add_condition'),
718 $this->
ctrl->getLinkTarget($this,
'selector')
720 $add_condition_trigger_button = $this->ui_renderer->render($add_condition_trigger_button);
725 $form_content = $this->ui_renderer->render([$form]);
727 $this->tpl->setContent(
728 $add_condition_trigger_button .
736 $action = $this->
http->wrapper()->query()->retrieve(
737 ConditionTriggerTableGUI::ACTION_TOKEN_NS,
740 $this->refinery->kindlyTo()->string(),
749 default => $this->
ctrl->redirect($this,
'listConditions')
761 $compulsory_ids = $this->
http->wrapper()->query()->retrieve(
762 ConditionTriggerTableGUI::ID_TOKEN_NS,
765 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
771 if (count($compulsory_ids) > (count($all_conditions) - 2)) {
772 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"rbac_precondition_minimum_optional"),
true);
773 $this->
ctrl->redirect($this,
'listConditions');
776 foreach ($all_conditions as $item) {
778 if (in_array($item[
'condition_id'], $compulsory_ids)) {
792 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
793 $this->
ctrl->redirect($this,
'listConditions');
798 $condition_trigger_ids = $this->
http->wrapper()->query()->retrieve(
799 ConditionTriggerTableGUI::ID_TOKEN_NS,
802 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
804 $this->
refinery->custom()->transformation(
function ($var) {
808 (
string) $var[0] ===
'ALL_OBJECTS' 819 if ($condition_trigger_ids === [
'ALL_OBJECTS']) {
820 $condition_trigger_ids = [];
826 $condition_trigger_ids[] = $condition[
'id'];
831 foreach ($condition_trigger_ids as $condition_trigger_id) {
833 $items[] = $this->ui_factory->modal()->interruptiveItem()->standard(
834 (
string) $condition_trigger_id,
836 ' (' . $this->
lng->txt(
'condition') .
':' .
837 $this->
lng->txt(
'condition_' . $condition[
'operator']) .
')' 841 $output = $this->ui_renderer->renderAsync(
843 $this->ui_factory->modal()->interruptive(
844 $this->
lng->txt(
'confirm'),
845 $this->
lng->txt(
'rbac_condition_delete_sure'),
846 $this->
ctrl->getFormAction($this,
'deleteConditionTrigger')
847 )->withAffectedItems($items)
851 $this->
http->saveResponse($this->
http->response()->withBody(
852 Streams::ofString($output)
854 $this->
http->sendResponse();
855 $this->
http->close();
860 $condition_trigger_ids = $this->
http->wrapper()->post()->retrieve(
861 'interruptive_items',
864 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
869 if (!count($condition_trigger_ids)) {
870 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_condition_selected'));
875 foreach ($condition_trigger_ids as $condition_id) {
876 $this->ch_obj->deleteCondition($condition_id);
879 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'condition_deleted'),
true);
880 $this->
ctrl->redirect($this,
'listConditions');
896 $old_status = $this->ui_factory->input()->field()->hidden()->withValue(
897 (
string) (count($optional_conditions) ? self::LIST_MODE_SUBSET : self::LIST_MODE_ALL)
900 $hidden = $this->ui_factory->input()->field()->checkbox(
901 $this->
lng->txt(
'rbac_precondition_hide'),
902 $this->
lng->txt(
'rbac_precondition_hide_info')
905 $condition_mode_all = $this->ui_factory->input()->field()->group(
907 $this->
lng->txt(
'rbac_precondition_mode_all'),
908 $this->
lng->txt(
'rbac_precondition_mode_all_info')
910 $list_mode_items[self::LIST_MODE_ALL] = $condition_mode_all;
913 if (count($all_conditions) > 1) {
919 $subset_limit[
'num_compulsory'] =
920 $this->ui_factory->input()
923 $this->
lng->txt(
'precondition_num_obligatory'),
924 $this->
lng->txt(
'precondition_num_optional_info')
927 ->withAdditionalTransformation(
928 $this->
refinery->logical()->parallel(
930 $this->
refinery->int()->isGreaterThan(0),
931 $this->
refinery->int()->isLessThan(count($all_conditions))
936 if (count($all_conditions) > 1) {
937 $condition_mode_subset = $this->ui_factory->input()->field()->group(
939 $this->
lng->txt(
'rbac_precondition_mode_subset'),
940 $this->
lng->txt(
'rbac_precondition_mode_subset_info')
942 $list_mode_items[self::LIST_MODE_SUBSET] = $condition_mode_subset;
945 $list_mode = $this->ui_factory->input()->field()->switchableGroup(
947 $this->
lng->txt(
'rbac_precondition_mode')
953 )) ? self::LIST_MODE_SUBSET : self::LIST_MODE_ALL
956 $main_section = $this->ui_factory->input()->field()->section(
958 'old_status' => $old_status,
959 'hidden_status' => $hidden,
960 'list_mode' => $list_mode
962 $this->
lng->txt(
'precondition_obligatory_settings')
964 $form = $this->ui_factory->input()->container()->form()->standard(
965 $this->
ctrl->getFormAction($this,
'saveCompulsoryForm'),
967 'compulsory_configuration' => $main_section
971 $form = $form->withRequest($this->
http->request());
979 $data = $form->getData();
981 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
987 $cond->updateHiddenStatus(
$data[
'compulsory_configuration'][
'hidden_status']);
989 $old_status =
$data[
'compulsory_configuration'][
'old_status'];
990 switch (
$data[
'compulsory_configuration'][
'list_mode'][0]) {
991 case self::LIST_MODE_ALL:
992 if ($old_status != self::LIST_MODE_ALL) {
999 foreach ($optional_conditions as $item) {
1004 case self::LIST_MODE_SUBSET:
1005 $num_required =
$data[
'compulsory_configuration'][
'list_mode'][1][
'num_compulsory'];
1006 if ($old_status != self::LIST_MODE_SUBSET) {
1012 foreach ($all_conditions as $item) {
1023 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1024 $this->
ctrl->redirect($this,
'listConditions');
1031 $this->tpl->setOnScreenMessage(
'failure',
"Missing id: condition_id");
1035 $this->
ctrl->setParameter($this,
'source_id', $source_id);
1037 $this->tpl->setContent($this->ui_renderer->render([$form]));
1042 if ($this->
http->wrapper()->query()->has(ConditionTriggerTableGUI::ID_TOKEN_NS)) {
1043 $condition_id = $this->
http->wrapper()->query()->retrieve(
1044 ConditionTriggerTableGUI::ID_TOKEN_NS,
1047 $this->refinery->kindlyTo()->listOf($this->
refinery->kindlyTo()->int()),
1052 $condition_id = end($condition_id);
1056 if (!$condition_id) {
1057 $this->tpl->setOnScreenMessage(
'failure',
"Missing id: condition_id");
1062 $this->
ctrl->setParameter($this,
'condition_id', $condition_id);
1065 $condition[
'trigger_ref_id'],
1069 $this->tpl->setContent($this->ui_renderer->render([$form]));
1079 if ($mode ==
'edit') {
1080 $main_section_items[
'obligatory'] = $this->ui_factory->input()->field()->hidden()
1081 ->withValue($condition[
'obligatory']);
1085 foreach ($condition_handler->getOperatorsByTriggerType($trigger_type) as $operator) {
1086 switch ($operator) {
1088 $group_items[$operator] = $this->ui_factory->input()->field()->group(
1096 $this->
lng->txt(
'condition_' . $operator)
1100 $group_items[$operator] = $this->ui_factory->input()->field()->group(
1102 $this->
lng->txt(
'condition_' . $operator)
1107 $main_section_items[
'operator'] = $this->ui_factory->input()->field()->switchableGroup(
1109 $this->
lng->txt(
'condition')
1110 )->withRequired(
true);
1111 if ($mode ==
'edit') {
1112 $main_section_items[
'operator'] = $main_section_items[
'operator']->withValue((
string) ($condition[
'operator']));
1116 $main_section = $this->ui_factory->input()->field()->section(
1117 $main_section_items,
1121 $form = $this->ui_factory->input()->container()->form()->standard(
1122 $this->
ctrl->getLinkTarget($this, $mode ===
'add' ?
'saveConditionTrigger' :
'updateConditionTrigger'),
1124 'condition_configuration' => $main_section
1127 if ($with_request) {
1128 $form = $form->withRequest($this->
http->request());
1139 $select_options = [];
1142 $select_options[$objective_id] = $objective->getTitle();
1144 $this->
lng->loadLanguageModule(
'crs');
1145 $sections[
'objective'] = $this->ui_factory->input()->field()->select(
1146 $this->
lng->txt(
'crs_objectives'),
1148 )->withRequired(
true);
1149 if ($stored_objective_id > 0) {
1150 $sections[
'objective'] = $sections[
'objective']->withValue($stored_objective_id);
1154 $sections[
'min'] = $this->ui_factory->input()->field()->numeric(
1155 $this->
lng->txt(
'precondition_operator_range_min'),
1157 $this->
refinery->logical()->parallel(
1159 $this->
refinery->int()->isGreaterThanOrEqual(0),
1160 $this->
refinery->int()->isLessThanOrEqual(100)
1163 )->withRequired(
true)
1164 ->withValue($stored_min);
1165 $sections[
'max'] = $this->ui_factory->input()->field()->numeric(
1166 $this->
lng->txt(
'precondition_operator_range_max'),
1168 $this->
refinery->logical()->parallel(
1170 $this->
refinery->int()->isGreaterThan(0),
1171 $this->
refinery->int()->isLessThanOrEqual(100)
1174 )->withRequired(
true)
1175 ->withValue($stored_max);
1176 return $this->ui_factory->input()->field()->section(
1179 )->withAdditionalTransformation(
1180 $this->
refinery->custom()->constraint(
1181 function ($min_max) {
1182 return $min_max[
'min'] < $min_max[
'max'];
1184 $this->
lng->txt(
'precondition_operator_range_err_min_max')
1196 'objective' => $data[
'condition_configuration'][
'operator'][1][
'result_range_percentage'][
'objective'] ??
null,
1197 'min_percentage' => $data[
'condition_configuration'][
'operator'][1][
'result_range_percentage'][
'min'],
1198 'max_percentage' => $data[
'condition_configuration'][
'operator'][1][
'result_range_percentage'][
'max']
1206 if (($condition[
'value'] ??
'') ===
'') {
1209 $value_arr = unserialize($condition[
'value']);
1210 if ($value_arr ===
false) {
1214 $value_arr[
'objective'] ?? 0,
1215 $value_arr[
'min_percentage'] ?? 0,
1216 $value_arr[
'max_percentage'] ?? 0
1223 if (!$condition_id) {
1224 $this->tpl->setOnScreenMessage(
'failure',
"Missing id: condition_id");
1230 $data = $form->getData();
1232 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
1239 $condition_handler->setOperator(
$data[
'condition_configuration'][
'operator'][0]);
1240 $condition_handler->setObligatory((
bool)
$data[
'condition_configuration'][
'obligatory']);
1243 $condition_handler->updateCondition($condition_id);
1244 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
1245 $this->
ctrl->redirect($this,
'listConditions');
1283 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_condition_selected'),
true);
1284 $this->
ctrl->redirect($this,
'listConditions');
1289 $data = $form->getData();
1291 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_check_input'));
1301 if ($trigger instanceof
ilObject) {
1302 $condition->setTriggerRefId($trigger->getRefId());
1303 $condition->setTriggerObjId($trigger->getId());
1304 $condition->setTriggerType($trigger->getType());
1306 $condition->setOperator(
$data[
'condition_configuration'][
'operator'][0]);
1307 $condition->setObligatory((
bool) (
$data[
'condition_configuration'][
'obligatory'] ??
true));
1311 if (!$condition->storeCondition()) {
1312 $this->tpl->setOnScreenMessage(
'failure', $condition->getErrorMessage(),
true);
1314 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'added_new_condition'),
true);
1316 $this->
ctrl->redirect($this,
'listConditions');
confirmDeleteConditionTrigger()
static get(string $a_var)
This class represents an option in a radio group.
ilGlobalTemplateInterface $tpl
initConditionIdFromQuery()
static _getCondition(int $a_id)
This class represents an option in a checkbox group.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
const OPERATOR_RESULT_RANGE_PERCENTAGE
editConditionTrigger(bool $with_request=false)
__construct(?int $a_ref_id=null)
bool $automatic_validation
static _isReferenceHandlingOptional(string $a_type)
static translateOperator(int $a_obj_id, string $a_operator, string $value='')
static lookupObligatoryConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id)
setTargetRefId(int $a_target_ref_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)
showObligatoryForm(string $list_mode=self::LIST_MODE_ALL)
ilObjectDefinition $objectDefinition
loadLanguageModule(string $a_module)
Load language module.
assign()
assign new trigger condition to target
static _getObjectiveIds(int $course_id, bool $a_activated_only=false)
handleConditionTriggerTableActions()
static lookupPersistedHiddenStatusByTarget(int $a_target_ref_id)
setTargetTitle(string $a_target_title)
setTargetId(int $a_target_id)
setAutomaticValidation(bool $a_status)
static _lookupObjId(int $ref_id)
ilConditionHandler $ch_obj
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 http()
Fetches the global http state from ILIAS.
initCompulsoryForm(bool $with_request=false)
addConditionTrigger(bool $with_request=false)
add(?ilPropertyFormGUI $form=null)
static _lookupTitle(int $obj_id)
ilConditionUtil $conditionUtil
Condition utility object Wraps some ilConditionHandler methods (which will become deprecated) Depende...
adjustConditionsAfterDeletion()
initConditionsIdsFromPost()
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static _refreshStatus(int $a_obj_id, ?array $a_users=null)
static lookupObjectiveTitle(int $a_objective_id, bool $a_add_description=false)
const IL_CRS_VIEW_OBJECTIVE
initRangeConditionInputItem(int $trigger_ref_id, int $trigger_obj_id, array $condition)
extractValueOptionsFromInput(array $data)
static getPersistedOptionalConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id, string $a_obj_type='')
setTargetType(string $a_target_type)
edit(?ilPropertyFormGUI $form=null)
initFormCondition(int $a_source_id, int $a_condition_id=0, string $a_mode='add')
isTargetReferenced()
Check if target has refernce id.
initObligatoryItemsFromPost()
static _lookupType(int $id, bool $reference=false)
const LIST_MODE_UNDEFINED
static getInstance(int $obj_id)
setBackButtons(array $a_btn_arr)
initConditionTriggerForm(bool $with_request, int $trigger_id, int $condition_id, string $mode='add')
extractValueOptionsFromCondition(array $condition)
static set(string $a_var, $a_val)
Set a value.
static _getPersistedConditionsOfTarget(int $a_target_ref_id, int $a_target_obj_id, string $a_target_type="")
get all persisted conditions of target object
listConditions(bool $load_form_with_request=false)
static _mode2Text(int $a_mode)