31 $this->
setId(self::class);
36 $this->lng = $this->parent_obj->lng;
38 $this->
setFormAction($this->ctrl->getFormAction($this->parent_obj));
39 if ($this->access->hasUserPermissionTo(
'write')) {
48 $this->
addColumn($this->lng->txt(
'topitem_position'),
'',
'30px');
49 $this->
addColumn($this->lng->txt(
'topitem_title'));
50 $this->
addColumn($this->lng->txt(
'topitem_active'));
51 $this->
addColumn($this->lng->txt(
'topitem_subentries'));
52 $this->
addColumn($this->lng->txt(
'topitem_type'));
53 $this->
addColumn($this->lng->txt(
'topitem_provider'));
54 $this->
addColumn($this->lng->txt(
'topitem_actions'));
65 $renderer = $DIC->ui()->renderer();
68 $item_facade = $this->item_repository->repository()->getItemFacade($DIC->globalScreen()->identification()->fromSerializedIdentification($a_set[
'identification']));
71 $this->tpl->setVariable(
'ID', $this->
hash($item_facade->getId()));
72 $this->tpl->setVariable(
'NATIVE_ID', $item_facade->getId());
73 $this->tpl->setVariable(
'TITLE', $item_facade->getDefaultTitle());
74 $this->tpl->setVariable(
'SUBENTRIES', $item_facade->getAmountOfChildren());
75 $this->tpl->setVariable(
'TYPE', $item_facade->getTypeForPresentation());
76 $this->tpl->setVariable(
'POSITION', $position * 10);
77 $this->tpl->setVariable(
'NATIVE_POSITION', $item_facade->getRawItem()->getPosition());
78 $this->tpl->setVariable(
'SAVED_POSITION', $item_facade->getFilteredItem()->getPosition());
79 if ($item_facade->isActivated()) {
80 $this->tpl->touchBlock(
'is_active');
82 if ($item_facade->isAlwaysAvailable() || !$item_facade->isAvailable()) {
83 $this->tpl->touchBlock(
'is_active_blocked');
85 $this->tpl->setVariable(
'PROVIDER', $item_facade->getProviderNameForPresentation());
90 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();
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="", $a_class=null)
Add Command button.
setExternalSorting($a_val)
Set external sorting.
setExternalSegmentation($a_val)
Set external segmentation.
Class ilMMItemRepository.
Class ilMMTopItemGUI ilMMTopItemGUI: ilObjMainMenuGUI ilMMTopItemGUI: ilMMItemTranslationGUI.
__construct(ilMMTopItemGUI $a_parent_obj, ilMMItemRepository $item_repository, ilObjMainMenuAccess $access)
ilMMTopItemTableGUI constructor.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
Class ilMMTopItemTableGUI.