ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMailTemplateTableGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
29 {
31  protected array $contexts = [];
33  protected array $uiComponents = [];
34 
35  public function __construct(
36  ilMailTemplateGUI $a_parent_obj,
37  string $a_parent_cmd,
38  protected Factory $uiFactory,
39  protected Renderer $uiRenderer,
40  protected bool $readOnly = false
41  ) {
42  $this->setId('mail_man_tpl');
43  parent::__construct($a_parent_obj, $a_parent_cmd);
44 
45  $this->setTitle($this->lng->txt('mail_templates'));
46  $this->setDefaultOrderDirection('ASC');
47  $this->setDefaultOrderField('title');
48 
49  if (!$this->readOnly) {
50  $this->addColumn('', '', '1%', true);
51  $this->setSelectAllCheckbox('tpl_id');
52  $this->addMultiCommand('confirmDeleteTemplate', $this->lng->txt('delete'));
53  }
54 
55  $this->addColumn($this->lng->txt('title'), 'title', '30%');
56  $this->addColumn($this->lng->txt('mail_template_context'), 'context', '20%');
57  $this->addColumn($this->lng->txt('action'), '', '10%');
58 
59  $this->setRowTemplate('tpl.mail_template_row.html', 'components/ILIAS/Mail');
60  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
61 
63  }
64 
65  protected function formatCellValue(string $column, array $row): string
66  {
67  if ('tpl_id' === $column) {
68  return ilLegacyFormElementsUtil::formCheckbox(false, 'tpl_id[]', (string) $row[$column]);
69  }
70  if ('lang' === $column) {
71  return $this->lng->txt('meta_l_' . $row[$column]);
72  }
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');
78  }
79 
80  return implode('', [
81  $this->contexts[$row[$column]]->getTitle(),
82  $isDefaultSuffix,
83  ]);
84  }
85 
86  return $this->lng->txt('mail_template_orphaned_context');
87  }
88 
89  return (string) $row[$column];
90  }
91 
92  protected function fillRow(array $a_set): void
93  {
94  foreach ($a_set as $column => $value) {
95  if ($column === 'tpl_id' && $this->readOnly) {
96  continue;
97  }
98 
99  $value = $this->formatCellValue($column, $a_set);
100  $this->tpl->setVariable('VAL_' . strtoupper($column), $value);
101  }
102 
103  $this->tpl->setVariable('VAL_ACTION', $this->formatActionsDropDown($a_set));
104  }
105 
106  protected function formatActionsDropDown(array $row): string
107  {
108  $this->ctrl->setParameter($this->getParentObject(), 'tpl_id', $row['tpl_id']);
109 
110  $buttons = [];
111 
112  if ($this->contexts !== []) {
113  if (!$this->readOnly) {
114  $buttons[] = $this->uiFactory
115  ->button()
116  ->shy(
117  $this->lng->txt('edit'),
118  $this->ctrl->getLinkTarget($this->getParentObject(), 'showEditTemplateForm')
119  );
120  } else {
121  $buttons[] = $this->uiFactory
122  ->button()
123  ->shy(
124  $this->lng->txt('view'),
125  $this->ctrl->getLinkTarget($this->getParentObject(), 'showEditTemplateForm')
126  );
127  }
128  }
129 
130  if (!$this->readOnly) {
131  $deleteModal = $this->uiFactory
132  ->modal()
133  ->interruptive(
134  $this->lng->txt('delete'),
135  $this->lng->txt('mail_tpl_sure_delete_entry'),
136  $this->ctrl->getFormAction($this->getParentObject(), 'deleteTemplate')
137  )->withActionButtonLabel(
138  $this->lng->txt('deleteTemplate')
139  );
140 
141  $this->uiComponents[] = $deleteModal;
142 
143  $buttons[] = $this->uiFactory
144  ->button()
145  ->shy(
146  $this->lng->txt('delete'),
147  $this->ctrl->getLinkTarget($this->getParentObject(), 'confirmDeleteTemplate')
148  )->withOnClick($deleteModal->getShowSignal());
149 
150  if ($row['is_default']) {
151  $buttons[] = $this->uiFactory
152  ->button()
153  ->shy(
154  $this->lng->txt('mail_template_unset_as_default'),
155  $this->ctrl->getLinkTarget($this->getParentObject(), 'unsetAsContextDefault')
156  );
157  } else {
158  $buttons[] = $this->uiFactory
159  ->button()
160  ->shy(
161  $this->lng->txt('mail_template_set_as_default'),
162  $this->ctrl->getLinkTarget($this->getParentObject(), 'setAsContextDefault')
163  );
164  }
165  }
166 
167  $this->ctrl->setParameter($this->getParentObject(), 'tpl_id', null);
168 
169  $dropDown = $this->uiFactory
170  ->dropdown()
171  ->standard($buttons)
172  ->withLabel($this->lng->txt('actions'));
173 
174  return $this->uiRenderer->render([$dropDown]);
175  }
176 
177  public function getHTML(): string
178  {
179  return parent::getHTML() . $this->uiRenderer->render($this->uiComponents);
180  }
181 }
setFormAction(string $a_form_action, bool $a_multipart=false)
Class ilMailTemplateGUI.
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
setId(string $a_val)
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.
Definition: Factory.php:37
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
setDefaultOrderDirection(string $a_defaultorderdirection)
static formCheckbox(bool $checked, string $varname, string $value, bool $disabled=false)
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)