51 $this->main_tpl = $DIC->ui()->mainTemplate();
53 $this->
lng = $DIC->language();
58 $this->form_action = $a_form_action;
68 $this->headertext = $a_headertext;
78 $this->form_name = $a_name;
81 final public function addButton(
string $a_txt,
string $a_cmd): void
94 $this->cancel_txt = $a_txt;
95 $this->cancel_cmd = $a_cmd;
96 $this->cancel_id = $a_id;
104 $this->confirm_txt = $a_txt;
105 $this->confirm_cmd = $a_cmd;
106 $this->confirm_id = $a_id;
117 'var' => $a_post_var,
125 $this->use_images =
true;
133 $this->hidden_item[] = [
134 'var' => $a_post_var,
141 if ($this->headertext ===
'') {
142 throw new RuntimeException(
'Please provide a header text before rendering the confirmation dialogue');
145 if ($this->form_action ===
'') {
146 throw new RuntimeException(
'Please provide a form action before rendering the confirmation dialogue');
149 if ($this->confirm_txt ===
'' || $this->confirm_cmd ===
'') {
150 throw new RuntimeException(
'Please provide a confirmation button label and command before rendering the confirmation dialogue');
153 if ($this->cancel_txt ===
'' || $this->cancel_cmd ===
'') {
154 throw new RuntimeException(
'Please provide a cancel button label and command before rendering the confirmation dialogue');
157 $this->main_tpl->setOnScreenMessage(
'question', $this->
getHeaderText());
160 if (count($this->item) > 0) {
162 $ctab->setData($this->item);
164 foreach ($this->buttons as
$b) {
165 $ctab->addCommandButton($b[
"cmd"], $b[
"txt"]);
167 $ctab->addCommandButton($this->confirm_cmd, $this->confirm_txt);
168 $ctab->addCommandButton($this->cancel_cmd, $this->cancel_txt);
170 foreach ($this->hidden_item as $hidden_item) {
171 $ctab->addHiddenInput($hidden_item[
"var"], $hidden_item[
"value"]);
174 if ($this->form_name !==
'') {
175 $ctab->setFormName($this->form_name);
178 return $ctab->getHTML();
183 $tb->setPreventDoubleSubmission(
true);
185 if ($this->hidden_item) {
186 foreach ($this->hidden_item as $hidden_item) {
188 $hiddenInput->setValue($hidden_item[
'value']);
189 $tb->addInputItem($hiddenInput);
193 $confirm->setCommand($this->confirm_cmd);
194 $confirm->setCaption($this->confirm_txt,
false);
195 $confirm->setId($this->confirm_id);
198 $cancel->setCommand($this->cancel_cmd);
199 $cancel->setCaption($this->cancel_txt,
false);
201 if ($this->cancel_id !==
'') {
202 $cancel->setId($this->cancel_id);
205 $tb->addStickyItem($confirm);
206 $tb->addStickyItem($cancel);
208 return $tb->getHTML();
addItem(string $a_post_var, string $a_id, string $a_text, string $a_img='', string $a_alt='')
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilGlobalTemplateInterface $main_tpl
setFormName(string $a_name)
setFormAction(string $a_form_action)
setHeaderText(string $a_headertext)
addHiddenItem(string $a_post_var, string $a_value)
addButton(string $a_txt, string $a_cmd)
setCancel(string $a_txt, string $a_cmd, string $a_id='')
setConfirm(string $a_txt, string $a_cmd, string $a_id='')
__construct(Container $dic, ilPlugin $plugin)