49 $this->main_tpl = $DIC->ui()->mainTemplate();
51 $this->
lng = $DIC->language();
56 $this->form_action = $a_form_action;
66 $this->headertext = $a_headertext;
76 $this->form_name = $a_name;
79 final public function addButton(
string $a_txt,
string $a_cmd): void
92 $this->cancel_txt = $a_txt;
93 $this->cancel_cmd = $a_cmd;
94 $this->cancel_id = $a_id;
102 $this->confirm_txt = $a_txt;
103 $this->confirm_cmd = $a_cmd;
104 $this->confirm_id = $a_id;
115 'var' => $a_post_var,
123 $this->use_images =
true;
131 $this->hidden_item[] = [
132 'var' => $a_post_var,
139 if ($this->headertext ===
'') {
140 throw new RuntimeException(
'Please provide a header text before rendering the confirmation dialogue');
143 if ($this->form_action ===
'') {
144 throw new RuntimeException(
'Please provide a form action before rendering the confirmation dialogue');
147 if ($this->confirm_txt ===
'' || $this->confirm_cmd ===
'') {
148 throw new RuntimeException(
'Please provide a confirmation button label and command before rendering the confirmation dialogue');
151 if ($this->cancel_txt ===
'' || $this->cancel_cmd ===
'') {
152 throw new RuntimeException(
'Please provide a cancel button label and command before rendering the confirmation dialogue');
155 $this->main_tpl->setOnScreenMessage(
'question', $this->
getHeaderText());
158 if (count($this->item) > 0) {
160 $ctab->setData($this->item);
162 foreach ($this->buttons as
$b) {
163 $ctab->addCommandButton($b[
"cmd"], $b[
"txt"]);
165 $ctab->addCommandButton($this->confirm_cmd, $this->confirm_txt);
166 $ctab->addCommandButton($this->cancel_cmd, $this->cancel_txt);
168 foreach ($this->hidden_item as $hidden_item) {
169 $ctab->addHiddenInput($hidden_item[
"var"], $hidden_item[
"value"]);
172 if ($this->form_name !==
'') {
173 $ctab->setFormName($this->form_name);
176 return $ctab->getHTML();
181 $tb->setPreventDoubleSubmission(
true);
183 if ($this->hidden_item) {
184 foreach ($this->hidden_item as $hidden_item) {
186 $hiddenInput->setValue($hidden_item[
'value']);
187 $tb->addInputItem($hiddenInput);
191 $confirm->setCommand($this->confirm_cmd);
192 $confirm->setCaption($this->confirm_txt,
false);
193 $confirm->setId($this->confirm_id);
196 $cancel->setCommand($this->cancel_cmd);
197 $cancel->setCaption($this->cancel_txt,
false);
199 if ($this->cancel_id !==
'') {
200 $cancel->setId($this->cancel_id);
203 $tb->addStickyItem($confirm);
204 $tb->addStickyItem($cancel);
206 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)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...