58 $this->
setId(
'acc_documents');
63 $this->
setTitle($this->lng->txt(
'acc_tbl_docs_title'));
64 $this->
setFormAction($this->ctrl->getFormAction($this->getParentObject(), $command));
72 $this->
setRowTemplate(
'tpl.acc_documents_row.html',
'Services/Accessibility');
74 if ($this->isEditable) {
77 $this->
addCommandButton(
'saveDocumentSorting', $this->lng->txt(
'sorting_save'));
90 if ($this->isEditable) {
97 'is_checkbox' =>
true,
103 'field' =>
'sorting',
104 'txt' => $this->lng->txt(
'acc_tbl_docs_head_sorting'),
113 'txt' => $this->lng->txt(
'acc_tbl_docs_head_title'),
121 'field' =>
'creation_ts',
122 'txt' => $this->lng->txt(
'acc_tbl_docs_head_created'),
129 'field' =>
'modification_ts',
130 'txt' => $this->lng->txt(
'acc_tbl_docs_head_last_change'),
137 'field' =>
'criteria',
138 'txt' => $this->lng->txt(
'acc_tbl_docs_head_criteria'),
144 if ($this->isEditable) {
146 'field' =>
'actions',
147 'txt' => $this->lng->txt(
'actions'),
164 foreach ($data[
'items'] as $key => $document) {
167 $data[
'items'][$key] = [
168 'id' => $document->getId(),
169 'title' => $document->getTitle(),
170 'creation_ts' => $document->getCreationTs(),
171 'modification_ts' => $document->getModificationTs(),
172 'text' => $document->getText(),
174 'criteriaAssignments' => $document->criteria()
186 if (in_array($column, [
'creation_ts',
'modification_ts'])) {
188 } elseif (
'sorting' === $column) {
190 } elseif (
'title' === $column) {
192 } elseif (
'actions' === $column) {
194 } elseif (
'chb' === $column) {
195 return \ilUtil::formCheckbox(
false,
'acc_id[]', $row[
'id']);
196 } elseif (
'criteria' === $column) {
197 return $this->formatCriterionAssignments($column, $row);
200 return parent::formatCellValue($column, $row);
210 if (!$this->isEditable) {
214 $this->ctrl->setParameter($this->
getParentObject(),
'acc_id', $row[
'id']);
216 $editBtn = $this->uiFactory
219 $this->lng->txt(
'edit'),
220 $this->ctrl->getLinkTarget($this->
getParentObject(),
'showEditDocumentForm')
223 $deleteModal = $this->uiFactory
226 $this->lng->txt(
'acc_doc_delete'),
227 $this->lng->txt(
'acc_sure_delete_documents_s'),
231 $deleteBtn = $this->uiFactory
233 ->shy($this->lng->txt(
'delete'),
'#')
234 ->withOnClick($deleteModal->getShowSignal());
236 $this->uiComponents[] = $deleteModal;
238 $attachCriterionBtn = $this->uiFactory
241 $this->lng->txt(
'acc_tbl_docs_action_add_criterion'),
242 $this->ctrl->getLinkTarget($this->
getParentObject(),
'showAttachCriterionForm')
247 $dropDown = $this->uiFactory
249 ->standard([$editBtn, $deleteBtn, $attachCriterionBtn])
250 ->withLabel($this->lng->txt(
'actions'));
252 return $this->uiRenderer->render([$dropDown]);
261 protected function formatCriterionAssignments(
string $column, array $row) :
string 265 if (0 === count($row[
'criteriaAssignments'])) {
266 return $this->lng->txt(
'acc_tbl_docs_cell_not_criterion');
269 foreach ($row[
'criteriaAssignments'] as $criterion) {
272 $this->ctrl->setParameter($this->
getParentObject(),
'acc_id', $row[
'id']);
273 $this->ctrl->setParameter($this->
getParentObject(),
'crit_id', $criterion->getId());
275 $editBtn = $this->uiFactory
278 $this->lng->txt(
'edit'),
279 $this->ctrl->getLinkTarget($this->
getParentObject(),
'showChangeCriterionForm')
282 $deleteModal = $this->uiFactory
285 $this->lng->txt(
'acc_doc_detach_crit_confirm_title'),
286 $this->lng->txt(
'acc_doc_sure_detach_crit'),
287 $this->ctrl->getFormAction($this->
getParentObject(),
'detachCriterionAssignment')
290 $deleteBtn = $this->uiFactory
292 ->shy($this->lng->txt(
'delete'),
'#')
293 ->withOnClick($deleteModal->getShowSignal());
295 $dropDown = $this->uiFactory
297 ->standard([$editBtn, $deleteBtn]);
299 $criterionType = $this->criterionTypeFactory->findByTypeIdent($criterion->getCriterionId(),
true);
300 $typeGui = $criterionType->ui($this->lng);
302 $items[implode(
' ', [
303 $typeGui->getIdentPresentation(),
304 ($this->isEditable ? $this->uiRenderer->render($dropDown) :
'')
306 $this->uiFactory->legacy(
307 $this->uiRenderer->render(
308 $typeGui->getValuePresentation(
309 $criterion->getCriterionValue(),
315 if ($this->isEditable) {
316 $this->uiComponents[] = $deleteModal;
323 $criteriaList = $this->uiFactory
325 ->descriptive($items);
327 return $this->uiRenderer->render([
337 protected function formatTitle(
string $column, array $row) : string
339 $modal = $this->uiFactory
341 ->lightbox([$this->uiFactory->modal()->lightboxTextPage($row[
'text'], $row[
'title'])]);
343 $titleLink = $this->uiFactory
345 ->shy($row[$column],
'#')
346 ->withOnClick($modal->getShowSignal());
348 return $this->uiRenderer->render([$titleLink, $modal]);
357 $value = ($this->i++) * $this->factor;
358 if (!$this->isEditable) {
359 return (
string) $value;
363 $sortingField->setValue((
string) $value);
364 $sortingField->setMaxLength(4);
365 $sortingField->setSize(2);
367 return $sortingField->render();
375 return parent::getHTML() . $this->uiRenderer->render($this->uiComponents);
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
An entity that renders components to a string output.
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
Class ChatMainBarProvider .
setExternalSegmentation($a_val)
Set external segmentation.
Class ilAccessibilityTableGUI.
formatCellValue(string $column, array $row)
getParentObject()
Get parent object.
__construct(ilAccessibilityControllerEnabled $a_parent_obj, string $command, ilAccessibilityCriterionTypeFactoryInterface $criterionTypeFactory, ILIAS\UI\Factory $uiFactory, ILIAS\UI\Renderer $uiRenderer, bool $isEditable=false)
ilAccessibilityDocumentTableGUI constructor.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
formatSorting(array $row)
Interface ilAccessibilityControllerEnabled.
setSelectAllCheckbox($a_select_all_checkbox, $a_select_all_on_top=false)
Set the name of the checkbox that should be toggled with a select all button.
This is how the factory for UI elements looks.
preProcessData(array &$data)
addMultiCommand($a_cmd, $a_text)
Add Command button.
formatTitle(string $column, array $row)
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
Class ilAccessibilityDocumentTableGUI.
formatActionsDropDown(string $column, array $row)
Interface ilAccessibilityCriterionTypeFactoryInterface.
setLimit($a_limit=0, $a_default_limit=0)