19 declare(strict_types=1);
34 $this->
logger = $DIC->logger()->wsrv();
37 $this->
addColumn($this->
lng->txt(
'obj_cat'),
'category',
'40%');
38 $this->
addColumn($this->
lng->txt(
'ecs_cat_mapping_type'),
'kind',
'50%');
40 $this->
setRowTemplate(
'tpl.rule_row.html',
'components/ILIAS/WebServices/ECS');
45 $this->
setTitle($this->
lng->txt(
'ecs_tbl_active_rules'));
49 protected function fillRow(array $a_set): void
51 $this->tpl->setVariable(
'VAL_ID', $a_set[
'id']);
52 $this->tpl->setVariable(
'TXT_ID', $this->
lng->txt(
'ecs_import_id'));
53 $this->tpl->setVariable(
'VAL_CAT_ID', $a_set[
'category_id']);
54 $this->tpl->setVariable(
'TXT_TITLE', $this->
lng->txt(
'title'));
55 $this->tpl->setVariable(
'VAL_CAT_TITLE', $a_set[
'category']);
56 $this->tpl->setVariable(
'VAL_CONDITION', $a_set[
'kind']);
57 $this->tpl->setVariable(
'TXT_EDIT', $this->
lng->txt(
'edit'));
58 $this->tpl->setVariable(
'PATH', $this->
buildPath($a_set[
'category_id']));
60 $this->
ctrl->setParameterByClass(get_class($this->
getParentObject()),
'rule_id', $a_set[
'id']);
61 $this->tpl->setVariable(
63 $this->
ctrl->getLinkTargetByClass(get_class($this->
getParentObject()),
'editCategoryMapping')
67 $this->
logger->error(
"Cannot fill Category Mapping Table due to parent object being null");
75 public function parse(array $a_rules): void
78 foreach ($a_rules as $rule) {
79 $tmp_arr[
'id'] = $rule->getMappingId();
80 $tmp_arr[
'category_id'] = $rule->getContainerId();
82 $tmp_arr[
'kind'] = $rule->conditionToString();
84 $content[] = $tmp_arr;
92 $loc->setTextOnly(
false);
93 $loc->addContextItems($a_ref_id);
95 return $loc->getHTML();
__construct($a_parent_obj, $a_parent_cmd)
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupTitle(int $obj_id)
setDefaultOrderField(string $a_defaultorderfield)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__construct(Container $dic, ilPlugin $plugin)
parse(array $a_rules)
Parse.
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)