19 declare(strict_types=1);
40 protected bool $readOnly =
false 42 $this->
setId(
'mail_man_tpl');
49 if (!$this->readOnly) {
55 $this->
addColumn($this->
lng->txt(
'title'),
'title',
'30%');
56 $this->
addColumn($this->
lng->txt(
'mail_template_context'),
'context',
'20%');
59 $this->
setRowTemplate(
'tpl.mail_template_row.html',
'components/ILIAS/Mail');
67 if (
'tpl_id' === $column) {
70 if (
'lang' === $column) {
71 return $this->
lng->txt(
'meta_l_' . $row[$column]);
73 if ($column ===
'context') {
74 if (isset($this->contexts[$row[$column]])) {
75 $isDefaultSuffix =
'';
76 if ($row[
'is_default']) {
77 $isDefaultSuffix = $this->
lng->txt(
'mail_template_default');
81 $this->contexts[$row[$column]]->
getTitle(),
86 return $this->
lng->txt(
'mail_template_orphaned_context');
92 protected function fillRow(array $a_set): void
94 foreach ($a_set as
$column => $value) {
95 if (
$column ===
'tpl_id' && $this->readOnly) {
100 $this->tpl->setVariable(
'VAL_' . strtoupper(
$column), $value);
112 if ($this->contexts !== []) {
113 if (!$this->readOnly) {
117 $this->
lng->txt(
'edit'),
124 $this->
lng->txt(
'view'),
130 if (!$this->readOnly) {
131 $deleteModal = $this->uiFactory
134 $this->
lng->txt(
'delete'),
135 $this->
lng->txt(
'mail_tpl_sure_delete_entry'),
137 )->withActionButtonLabel(
138 $this->
lng->txt(
'deleteTemplate')
141 $this->uiComponents[] = $deleteModal;
146 $this->
lng->txt(
'delete'),
148 )->withOnClick($deleteModal->getShowSignal());
150 if ($row[
'is_default']) {
154 $this->
lng->txt(
'mail_template_unset_as_default'),
161 $this->
lng->txt(
'mail_template_set_as_default'),
169 $dropDown = $this->uiFactory
172 ->withLabel($this->
lng->txt(
'actions'));
174 return $this->uiRenderer->render([$dropDown]);
179 return parent::getHTML() . $this->uiRenderer->render($this->uiComponents);
setFormAction(string $a_form_action, bool $a_multipart=false)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
formatActionsDropDown(array $row)
Class ilMailTemplateTableGUI.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(ilMailTemplateGUI $a_parent_obj, string $a_parent_cmd, protected Factory $uiFactory, protected Renderer $uiRenderer, protected bool $readOnly=false)
static getTemplateContexts(?array $a_id=null)
Returns an array of mail template contexts, the key of each entry matches its id. ...
setDefaultOrderField(string $a_defaultorderfield)
formatCellValue(string $column, array $row)
This is how the factory for UI elements looks.
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
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)