19 declare(strict_types=1);
31 protected \ILIAS\DI\Container
$dic;
35 $this->
setId(
'chatroom_smilies_tbl');
43 $this->
setTitle($this->
lng->txt(
'chatroom_available_smilies'));
45 $this->
addColumn(
'',
'checkbox',
'2%',
true);
46 $this->
addColumn($this->
lng->txt(
'chatroom_smiley_image'),
'',
'28%');
47 $this->
addColumn($this->
lng->txt(
'chatroom_smiley_keyword'),
'keyword',
'55%');
51 $this->
setRowTemplate(
'tpl.chatroom_smiley_list_row.html',
'Modules/Chatroom');
54 if ($this->dic->rbac()->system()->checkAccess(
'write', $this->gui->getRefId())) {
56 'smiley-deleteMultipleObject',
57 $this->
lng->txt(
'chatroom_delete_selected')
62 protected function fillRow(array $a_set): void
64 $this->tpl->setVariable(
'VAL_SMILEY_ID', $a_set[
'smiley_id']);
65 $this->tpl->setVariable(
'VAL_SMILEY_PATH', $a_set[
'smiley_fullpath']);
66 $this->tpl->setVariable(
'VAL_SMILEY_KEYWORDS', $a_set[
'smiley_keywords']);
67 $this->tpl->setVariable(
68 'VAL_SMILEY_KEYWORDS_NONL',
69 str_replace(
"\n",
"", $a_set[
'smiley_keywords'])
72 if ($this->dic->rbac()->system()->checkAccess(
'write', $this->gui->getRefId())) {
74 $current_selection_list->setListTitle($this->
lng->txt(
'actions'));
75 $current_selection_list->setId(
'act_' . $a_set[
'smiley_id']);
77 $this->
ctrl->setParameter($this->gui,
'smiley_id', $a_set[
'smiley_id']);
78 $current_selection_list->addItem(
79 $this->
lng->txt(
'edit'),
81 $this->
ctrl->getLinkTarget($this->gui,
'smiley-showEditSmileyEntryFormObject')
83 $current_selection_list->addItem(
84 $this->
lng->txt(
'delete'),
86 $this->
ctrl->getLinkTarget($this->gui,
'smiley-showDeleteSmileyFormObject')
88 $this->
ctrl->setParameter($this->gui,
'smiley_id', null);
90 $this->tpl->setVariable(
'VAL_ACTIONS', $current_selection_list->getHTML());
setFormAction(string $a_form_action, bool $a_multipart=false)
Class ilChatroomSmiliesTableGUI Prepares table rows and fills them.
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setTitle(string $a_title, string $a_icon="", string $a_icon_alt="")
__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)
addMultiCommand(string $a_cmd, string $a_text)
__construct(ilChatroomObjectGUI $a_ref, string $cmd)