19 declare(strict_types=1);
45 $ilCtrl = $DIC[
'ilCtrl'];
46 $this->ui_factory = $DIC->ui()->factory();
47 $this->ui_renderer = $DIC->ui()->renderer();
54 $this->
addColumn($this->
lng->txt(
'title'),
'category',
'99%');
60 $local_dic = QuestionPoolDIC::dic();
61 $this->request = $local_dic[
'request_data_collector'];
62 $ref_id = $this->request->getRefId();
64 if ($type ===
'assf') {
65 $hasAccess = $DIC->rbac()->system()->checkAccess(
'edit',
$ref_id);
67 $hasAccess = $DIC->access()->checkAccess(
'edit', $cmd,
$ref_id);
79 $this->
setFormAction($ilCtrl->getFormAction($this->getParentObject(), $cmd));
81 $this->
setRowTemplate(
'tpl.unit_category_row.html',
'components/ILIAS/TestQuestionPool');
98 $actions[] = $this->ui_factory->link()->standard($this->
lng->txt(
'un_show_units'), $this->
ctrl->getLinkTarget($this->
getParentObject(),
'showUnitsOfCategory'));
99 $ref_id = $this->request->getRefId();
101 if ($type ===
'assf') {
102 $hasAccess = $DIC->rbac()->system()->checkAccess(
'edit',
$ref_id);
104 $hasAccess = $DIC->access()->checkAccess(
'edit',
'showUnitCategoryModificationForm',
$ref_id) &&
105 $DIC->access()->checkAccess(
'edit',
'confirmDeleteCategory',
$ref_id);
109 $actions[] = $this->ui_factory->link()->standard($this->
lng->txt(
'edit'), $this->
ctrl->getLinkTarget($this->
getParentObject(),
'showUnitCategoryModificationForm'));
110 $actions[] = $this->ui_factory->link()->standard($this->
lng->txt(
'delete'), $this->
ctrl->getLinkTarget($this->
getParentObject(),
'confirmDeleteCategory'));
113 $actions[] = $this->ui_factory->link()->standard($this->
lng->txt(
'import'), $this->
ctrl->getLinkTarget($this->
getParentObject(),
'confirmImportGlobalCategory'));
115 $row[
'title_href'] = $this->
ctrl->getLinkTarget($this->
getParentObject(),
'showUnitsOfCategory');
117 $dropdown = $this->ui_factory->dropdown()->standard($actions)->withLabel($this->
lng->txt(
'actions'));
118 $row[
'actions'] = $this->ui_renderer->render($dropdown);
120 parent::fillRow($row);
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
Class ilUnitConfigurationGUI.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
Class ilUnitCategoryTableGUI .
ILIAS UI Factory $ui_factory
ILIAS UI Renderer $ui_renderer
__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)
__construct(?object $a_parent_obj, string $a_parent_cmd="", string $a_template_context="")
static _lookupType(int $id, bool $reference=false)
addMultiCommand(string $a_cmd, string $a_text)
RequestDataCollector $request