19 declare(strict_types=1);
28 require_once __DIR__ .
'/../ContainerMock.php';
36 $this->assertInstanceOf(Confirmation::class,
new Confirmation($this->mock(ilLanguage::class), $this->fail(...)));
42 $language = $this->mock(ilLanguage::class);
43 $language->expects(self::exactly(2))->method(
'txt')->willReturnCallback(
static fn(
string $key):
string =>
'translated ' . $key);
45 $instance =
new Confirmation($language,
static fn() => $confirmation);
46 $this->assertSame(
'rendered string', $instance->render(
'dummy link',
'submit',
'cancel',
'Hi', [
51 $this->assertSame(
'dummy link', $confirmation->link);
52 $this->assertSame(
'submit', $confirmation->submit_command);
53 $this->assertSame(
'cancel', $confirmation->cancel_command);
54 $this->assertSame(
'translated confirm', $confirmation->submit_label);
55 $this->assertSame(
'translated cancel', $confirmation->cancel_label);
56 $this->assertSame(
'Hi', $confirmation->header_text);
57 $this->assertSame([[
'ids[]',
'foo',
'bar'], [
'ids[]',
'7',
'baz']], $confirmation->items);
64 public string $confirm_command;
65 public string $cancel_command;
66 public string $header_text;
67 public array $items = [];
68 public string $cancel_label;
69 public string $submit_label;
70 public string $submit_command;
72 public function setFormAction(
string $link):
void 76 public function setConfirm(
string $label,
string $command):
void 78 $this->submit_label = $label;
79 $this->submit_command = $command;
81 public function setCancel(
string $label,
string $command):
void 83 $this->cancel_label = $label;
84 $this->cancel_command = $command;
86 public function setHeaderText(
string $text):
void 88 $this->header_text = $text;
90 public function addItem(
string $a,
string $b,
string $c):
void 92 $this->items[] = [
$a,
$b,
$c];
94 public function getHTML():
string 96 return 'rendered string';
confirmationGUIReplacement()
link(string $caption, string $href, bool $new_viewport=false)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples