ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilUnitCategoryTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
28 abstract class ilUnitCategoryTableGUI extends ilTable2GUI
29 {
30  private \ILIAS\UI\Factory $ui_factory;
31  private \ILIAS\UI\Renderer $ui_renderer;
32 
34 
39  public function __construct(ilUnitConfigurationGUI $controller, $cmd)
40  {
44  global $DIC;
45  $ilCtrl = $DIC['ilCtrl'];
46  $this->ui_factory = $DIC->ui()->factory();
47  $this->ui_renderer = $DIC->ui()->renderer();
48 
49  $this->setId('ucats_' . $controller->getUniqueId());
50 
51  parent::__construct($controller, $cmd);
52 
53  $this->addColumn('', '', '1%', true);
54  $this->addColumn($this->lng->txt('title'), 'category', '99%');
55  $this->addColumn('', '', '1%', true);
56 
57  $this->setDefaultOrderDirection('category');
58  $this->setDefaultOrderDirection('ASC');
59 
60  $local_dic = QuestionPoolDIC::dic();
61  $this->request = $local_dic['request_data_collector'];
62  $ref_id = $this->request->getRefId();
63  $type = ilObject::_lookupType($ref_id, true);
64  if ($type === 'assf') {
65  $hasAccess = $DIC->rbac()->system()->checkAccess('edit', $ref_id);
66  } else {
67  $hasAccess = $DIC->access()->checkAccess('edit', $cmd, $ref_id);
68  }
69  if ($hasAccess) {
70  if ($this->getParentObject()->isCRUDContext()) {
71  $this->addMultiCommand('confirmDeleteCategories', $this->lng->txt('delete'));
72  } else {
73  $this->addMultiCommand('confirmImportGlobalCategories', $this->lng->txt('import'));
74  }
75  }
76 
77  $this->populateTitle();
78 
79  $this->setFormAction($ilCtrl->getFormAction($this->getParentObject(), $cmd));
80  $this->setSelectAllCheckbox('category_ids[]');
81  $this->setRowTemplate('tpl.unit_category_row.html', 'components/ILIAS/TestQuestionPool');
82  }
83 
84  abstract protected function populateTitle(): void;
85 
89  public function fillRow(array $row): void
90  {
91  global $DIC;
92 
93  $row['chb'] = ilLegacyFormElementsUtil::formCheckbox(false, 'category_ids[]', (string) $row['category_id']);
94 
95  $actions = [];
96 
97  $this->ctrl->setParameter($this->getParentObject(), 'category_id', $row['category_id']);
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();
100  $type = ilObject::_lookupType($ref_id, true);
101  if ($type === 'assf') {
102  $hasAccess = $DIC->rbac()->system()->checkAccess('edit', $ref_id);
103  } else {
104  $hasAccess = $DIC->access()->checkAccess('edit', 'showUnitCategoryModificationForm', $ref_id) &&
105  $DIC->access()->checkAccess('edit', 'confirmDeleteCategory', $ref_id);
106  }
107  if ($this->getParentObject()->isCRUDContext()) {
108  if ($hasAccess) {
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'));
111  }
112  } else {
113  $actions[] = $this->ui_factory->link()->standard($this->lng->txt('import'), $this->ctrl->getLinkTarget($this->getParentObject(), 'confirmImportGlobalCategory'));
114  }
115  $row['title_href'] = $this->ctrl->getLinkTarget($this->getParentObject(), 'showUnitsOfCategory');
116  $this->ctrl->setParameter($this->getParentObject(), 'category_id', '');
117  $dropdown = $this->ui_factory->dropdown()->standard($actions)->withLabel($this->lng->txt('actions'));
118  $row['actions'] = $this->ui_renderer->render($dropdown);
119 
120  parent::fillRow($row);
121  }
122 }
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
Class ilUnitConfigurationGUI.
setId(string $a_val)
$ref_id
Definition: ltiauth.php:65
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
global $DIC
Definition: shib_login.php:22
setDefaultOrderDirection(string $a_defaultorderdirection)
static formCheckbox(bool $checked, string $varname, string $value, bool $disabled=false)
Class ilUnitCategoryTableGUI .
__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)