3 declare(strict_types=1);
28 $this->
setId(self::class);
33 $this->
lng = $this->parent_obj->lng;
36 if ($this->
access->hasUserPermissionTo(
'write')) {
45 $this->
addColumn($this->
lng->txt(
'topitem_position'),
'',
'30px');
58 protected function fillRow(array $a_set): void
63 $renderer = $DIC->ui()->renderer();
66 $item_facade = $this->item_repository->repository()->getItemFacade($DIC->globalScreen()->identification()->fromSerializedIdentification($a_set[
'identification']));
69 $this->tpl->setVariable(
'ID', $this->
hash($item_facade->getId()));
70 $this->tpl->setVariable(
'NATIVE_ID', $item_facade->getId());
71 $this->tpl->setVariable(
'TITLE', $item_facade->getDefaultTitle());
72 $this->tpl->setVariable(
'SUBENTRIES', $item_facade->getAmountOfChildren());
73 $this->tpl->setVariable(
'TYPE', $item_facade->getTypeForPresentation());
74 $this->tpl->setVariable(
'CSS_ID',
"mm_" . $item_facade->identification()->getInternalIdentifier());
75 $this->tpl->setVariable(
'POSITION', $position * 10);
76 $this->tpl->setVariable(
'NATIVE_POSITION', $item_facade->getRawItem()->getPosition());
77 $this->tpl->setVariable(
'SAVED_POSITION', $item_facade->getFilteredItem()->getPosition());
78 if ($item_facade->isActivated()) {
79 $this->tpl->touchBlock(
'is_active');
81 if ($item_facade->isAlwaysAvailable() || !$item_facade->isAvailable()) {
82 $this->tpl->touchBlock(
'is_active_blocked');
84 $this->tpl->setVariable(
'PROVIDER', $item_facade->getProviderNameForPresentation());
89 if ($this->
access->hasUserPermissionTo(
'write')) {
91 if ($item_facade->isEditable()) {
98 if ($item_facade->isDeletable()) {
99 $ditem =
$factory->modal()->interruptiveItem($this->
hash($a_set[
'identification']), $item_facade->getDefaultTitle());
103 ->withAffectedItems([$ditem]);
107 $rendered_modal = $renderer->render([$m]);
109 if ($item_facade->isInterchangeable()) {
112 $this->tpl->setVariable(
'ACTIONS', $rendered_modal . $renderer->render([
$factory->dropdown()->standard($items)->withLabel($this->
lng->txt(
'sub_actions'))]));
121 return $this->item_repository->getTopItems();
ilMMItemRepository $item_repository
setFormAction(string $a_form_action, bool $a_multipart=false)
addCommandButton(string $a_cmd, string $a_text, string $a_onclick='', string $a_id="", string $a_class="")
Class ilMMItemRepository.
setExternalSorting(bool $a_val)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
Class ilMMTopItemGUI ilMMTopItemGUI: ilObjMainMenuGUI ilMMTopItemGUI: ilMMItemTranslationGUI.
__construct(ilMMTopItemGUI $a_parent_obj, ilMMItemRepository $item_repository, ilObjMainMenuAccess $access)
ilMMTopItemTableGUI constructor.
__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)
Class ilMMTopItemTableGUI.
ilObjMainMenuAccess $access
setExternalSegmentation(bool $a_val)