19 declare(strict_types=1);
29 public function __construct(
object $a_parent_obj,
string $a_parent_cmd,
bool $a_enable_editing =
false)
31 $this->enable_editing = $a_enable_editing;
38 protected function fillRow(array $a_set): void
40 $this->tpl->setVariable(
'OBJ_SRC', $a_set[
'icon']);
41 $this->tpl->setVariable(
'OBJ_ALT', $a_set[
'icon_alt']);
42 $this->tpl->setVariable(
'OBJ_TITLE', $a_set[
'title']);
43 $this->tpl->setVariable(
'OBJ_LINK', ilLink::_getLink($a_set[
'ref_id']));
44 $this->tpl->setVariable(
'OBJ_DESCRIPTION', $a_set[
'description']);
45 $this->tpl->setVariable(
'COND_ID', $a_set[
'id']);
46 $this->tpl->setVariable(
'OBJ_CONDITION', $a_set[
'condition']);
48 if (!$this->enable_editing) {
49 $this->tpl->setCurrentBlock(
"obligatory_static");
50 $this->tpl->setVariable(
54 $this->tpl->setVariable(
56 $this->
lng->txt($a_set[
'obligatory'] ?
57 'precondition_obligatory_alt' :
58 'precondition_not_obligatory_alt')
60 $this->tpl->parseCurrentBlock();
62 $this->tpl->setCurrentBlock(
"obligatory_edit");
63 $this->tpl->setVariable(
'OBL_ID', $a_set[
'id']);
64 $this->tpl->setVariable(
'OBL_STATUS', $a_set[
'obligatory'] ?
' checked="checked"' :
'');
65 $this->tpl->parseCurrentBlock();
69 $this->
ctrl->setParameterByClass(get_class($this->
getParentObject()),
'condition_id', $a_set[
'id']);
70 $this->tpl->setVariable(
75 $this->tpl->setVariable(
'TXT_EDIT', $this->
lng->txt(
'edit'));
85 foreach ($a_conditions as $condition) {
86 if ($condition[
'trigger_type'] ===
'crsg') {
89 $row[
'id'] = $condition[
'condition_id'];
90 $row[
'ref_id'] = $condition[
'trigger_ref_id'];
91 $row[
'type'] = $condition[
'trigger_type'];
95 $row[
'icon_alt'] = $this->
lng->txt(
'obj_' . $condition[
'trigger_type']);
96 $row[
'condition'] = $this->
lng->txt(
'condition_' . $condition[
'operator']);
97 $row[
'obligatory'] = $condition[
'obligatory'];
109 $this->
lng->loadLanguageModule(
'rbac');
111 $this->
setRowTemplate(
'tpl.condition_handler_row.html',
'components/ILIAS/Conditions');
112 $this->
setTitle($this->
lng->txt(
'active_preconditions'));
114 $this->
addColumn($this->
lng->txt(
'rbac_precondition_source'),
'title',
'66%');
115 $this->
addColumn($this->
lng->txt(
'condition'),
'condition');
116 $this->
addColumn($this->
lng->txt(
'precondition_obligatory'),
'obligatory');
119 $this->
enable(
'select_all');
128 if ($this->enable_editing) {
129 $this->
addCommandButton(
"saveObligatoryList", $this->
lng->txt(
"rbac_precondition_save_obligatory"));
__construct(object $a_parent_obj, string $a_parent_cmd, bool $a_enable_editing=false)
enable(string $a_module_name)
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setConditions(array $a_conditions)
Set and parse conditions.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
Table presentation of conditions.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
setDefaultOrderDirection(string $a_defaultorderdirection)
static _lookupDescription(int $obj_id)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
addMultiCommand(string $a_cmd, string $a_text)