1 <?php declare(strict_types=1);
59 $this->
setId(
'tos_documents');
64 $this->
setTitle($this->lng->txt(
'tos_tbl_docs_title'));
65 $this->
setFormAction($this->ctrl->getFormAction($this->getParentObject(), $command));
73 $this->
setRowTemplate(
'tpl.tos_documents_row.html',
'Services/TermsOfService');
75 if ($this->isEditable) {
78 $this->
addCommandButton(
'saveDocumentSorting', $this->lng->txt(
'sorting_save'));
91 if ($this->isEditable) {
98 'is_checkbox' =>
true,
104 'field' =>
'sorting',
105 'txt' => $this->lng->txt(
'tos_tbl_docs_head_sorting'),
114 'txt' => $this->lng->txt(
'tos_tbl_docs_head_title'),
122 'field' =>
'creation_ts',
123 'txt' => $this->lng->txt(
'tos_tbl_docs_head_created'),
130 'field' =>
'modification_ts',
131 'txt' => $this->lng->txt(
'tos_tbl_docs_head_last_change'),
138 'field' =>
'criteria',
139 'txt' => $this->lng->txt(
'tos_tbl_docs_head_criteria'),
145 if ($this->isEditable) {
147 'field' =>
'actions',
148 'txt' => $this->lng->txt(
'actions'),
165 foreach ($data[
'items'] as $key => $document) {
168 $data[
'items'][$key] = [
169 'id' => $document->getId(),
170 'title' => $document->getTitle(),
171 'creation_ts' => $document->getCreationTs(),
172 'modification_ts' => $document->getModificationTs(),
173 'text' => $document->getText(),
175 'criteriaAssignments' => $document->criteria()
187 if (in_array($column, [
'creation_ts',
'modification_ts'])) {
189 } elseif (
'sorting' === $column) {
191 } elseif (
'title' === $column) {
193 } elseif (
'actions' === $column) {
195 } elseif (
'chb' === $column) {
196 return \ilUtil::formCheckbox(
false,
'tos_id[]', $row[
'id']);
197 } elseif (
'criteria' === $column) {
198 return $this->formatCriterionAssignments($column, $row);
201 return parent::formatCellValue($column, $row);
211 if (!$this->isEditable) {
215 $this->ctrl->setParameter($this->
getParentObject(),
'tos_id', $row[
'id']);
217 $editBtn = $this->uiFactory
220 $this->lng->txt(
'edit'),
221 $this->ctrl->getLinkTarget($this->
getParentObject(),
'showEditDocumentForm')
224 $deleteModal = $this->uiFactory
227 $this->lng->txt(
'tos_doc_delete'),
228 $this->lng->txt(
'tos_sure_delete_documents_s'),
232 $deleteBtn = $this->uiFactory
234 ->shy($this->lng->txt(
'delete'),
'#')
235 ->withOnClick($deleteModal->getShowSignal());
237 $this->uiComponents[] = $deleteModal;
239 $attachCriterionBtn = $this->uiFactory
242 $this->lng->txt(
'tos_tbl_docs_action_add_criterion'),
243 $this->ctrl->getLinkTarget($this->
getParentObject(),
'showAttachCriterionForm')
248 $dropDown = $this->uiFactory
250 ->standard([$editBtn, $deleteBtn, $attachCriterionBtn])
251 ->withLabel($this->lng->txt(
'actions'));
253 return $this->uiRenderer->render([$dropDown]);
262 protected function formatCriterionAssignments(
string $column, array $row) :
string 266 if (0 === count($row[
'criteriaAssignments'])) {
267 return $this->lng->txt(
'tos_tbl_docs_cell_not_criterion');
270 foreach ($row[
'criteriaAssignments'] as $criterion) {
273 $this->ctrl->setParameter($this->
getParentObject(),
'tos_id', $row[
'id']);
274 $this->ctrl->setParameter($this->
getParentObject(),
'crit_id', $criterion->getId());
276 $editBtn = $this->uiFactory
279 $this->lng->txt(
'edit'),
280 $this->ctrl->getLinkTarget($this->
getParentObject(),
'showChangeCriterionForm')
283 $deleteModal = $this->uiFactory
286 $this->lng->txt(
'tos_doc_detach_crit_confirm_title'),
287 $this->lng->txt(
'tos_doc_sure_detach_crit'),
288 $this->ctrl->getFormAction($this->
getParentObject(),
'detachCriterionAssignment')
291 $deleteBtn = $this->uiFactory
293 ->shy($this->lng->txt(
'delete'),
'#')
294 ->withOnClick($deleteModal->getShowSignal());
296 $dropDown = $this->uiFactory
298 ->standard([$editBtn, $deleteBtn]);
300 $criterionType = $this->criterionTypeFactory->findByTypeIdent($criterion->getCriterionId(),
true);
301 $typeGui = $criterionType->ui($this->lng);
303 $items[implode(
' ', [
304 $typeGui->getIdentPresentation(),
305 ($this->isEditable ? $this->uiRenderer->render($dropDown) :
'')
307 $this->uiFactory->legacy(
308 $this->uiRenderer->render(
309 $typeGui->getValuePresentation(
310 $criterion->getCriterionValue(),
316 if ($this->isEditable) {
317 $this->uiComponents[] = $deleteModal;
324 $criteriaList = $this->uiFactory
326 ->descriptive($items);
328 return $this->uiRenderer->render([
338 protected function formatTitle(
string $column, array $row) : string
340 $modal = $this->uiFactory
342 ->lightbox([$this->uiFactory->modal()->lightboxTextPage($row[
'text'], $row[
'title'])]);
344 $titleLink = $this->uiFactory
346 ->shy($row[$column],
'#')
347 ->withOnClick($modal->getShowSignal());
349 return $this->uiRenderer->render([$titleLink, $modal]);
358 $value = ($this->i++) * $this->factor;
359 if (!$this->isEditable) {
360 return (
string) $value;
364 $sortingField->setValue((
string) $value);
365 $sortingField->setMaxLength(4);
366 $sortingField->setSize(2);
368 return $sortingField->render();
376 return parent::getHTML() . $this->uiRenderer->render($this->uiComponents);
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
Class ilTermsOfServiceDocumentTableGUI.
An entity that renders components to a string output.
setExternalSorting($a_val)
Set external sorting.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
formatActionsDropDown(string $column, array $row)
Class ChatMainBarProvider .
Interface ilTermsOfServiceControllerEnabled.
setExternalSegmentation($a_val)
Set external segmentation.
__construct(ilTermsOfServiceControllerEnabled $a_parent_obj, string $command, ilTermsOfServiceCriterionTypeFactoryInterface $criterionTypeFactory, ILIAS\UI\Factory $uiFactory, ILIAS\UI\Renderer $uiRenderer, bool $isEditable=false)
ilTermsOfServiceDocumentTableGUI constructor.
getParentObject()
Get parent object.
formatSorting(array $row)
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
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.
addMultiCommand($a_cmd, $a_text)
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
formatCellValue(string $column, array $row)
setFormName($a_formname="")
Set Form name.
__construct(Container $dic, ilPlugin $plugin)
formatTitle(string $column, array $row)
preProcessData(array &$data)
setLimit($a_limit=0, $a_default_limit=0)
Interface ilTermsOfServiceCriterionTypeFactoryInterface.