19 declare(strict_types=1);
21 require_once(
"vendor/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../../Base.php");
37 $this->sig_gen =
new I\SignalGenerator();
42 return $this->
getUIFactory()->symbol()->icon()->standard(
"name",
"aria_label",
"small",
false);
50 public function button(): I\Button\Factory
52 return new I\Button\Factory();
54 public function symbol(): I\Symbol\Factory
56 return new I\Symbol\Factory(
62 public function item(): I\Item\Factory
64 return new I\Item\Factory();
66 public function mainControls(): I\MainControls\Factory
68 return new I\MainControls\Factory(
77 public function icon(): C\Symbol\Icon\Factory
79 return new I\Symbol\Icon\Factory();
89 $notificatino_slate = $this->
getUIFactory()->mainControls()->slate()->notification(
"title", []);
91 $this->assertInstanceOf(
"ILIAS\\UI\\Component\\MainControls\\Slate\\Notification", $notificatino_slate);
97 ->withDescription(
"description");
99 $notification_slate = $this->
getUIFactory()->mainControls()->slate()->notification(
"title", [$item,$item]);
100 $this->assertEquals(
"title", $notification_slate->getName());
101 $this->assertEquals($notification_slate->getContents(), [$item,$item]);
105 public function testWithAdditionalEntry():
void 109 ->withDescription(
"description");
110 $notification_slate = $this->
getUIFactory()->mainControls()->slate()->notification(
"title", [$item,$item]);
111 $this->assertEquals($notification_slate->getContents(), [$item,$item]);
112 $notification_slate = $notification_slate->withAdditionalEntry($item);
113 $this->assertEquals($notification_slate->getContents(), [$item,$item,$item]);
119 $notification_slate = $this->
getUIFactory()->mainControls()->slate()->notification(
"slate title", [$item]);
122 $r = $this->getDefaultRenderer();
123 $html =
$r->render($notification_slate);
126 <div
class=
"il-maincontrols-slate il-maincontrols-slate-notification">
127 <div
class=
"il-maincontrols-slate-notification-title">slate title</div>
128 <div
class=
"il-maincontrols-slate-content">
129 <div
class=
"il-item-notification-replacement-container">
130 <div
class=
"il-item il-notification-item" id=
"id_1">
132 <div
class=
"media-left">
133 <img
class=
"icon name small" src=
"./assets/images/standard/icon_default.svg" alt=
"aria_label"/>
135 <div
class=
"media-body">
136 <h4
class=
"il-item-notification-title">item title</h4>
137 <div
class=
"il-aggregate-notifications" data-aggregatedby=
"id_1">
138 <div
class=
"il-maincontrols-slate il-maincontrols-slate-notification">
139 <div
class=
"il-maincontrols-slate-notification-title">
140 <
button class=
"btn btn-bulky" data-action=
"">
141 <span
class=
"glyph" role=
"img">
142 <span
class=
"glyphicon glyphicon-chevron-left" aria-hidden=
"true"></span>
144 <span
class=
"bulky-label">
back</span>
147 <div
class=
"il-maincontrols-slate-content"></div>
158 $this->brutallyTrimHTML($expected),
159 $this->brutallyTrimHTML($html)
button(string $caption, string $cmd)
back()
description: > Example for rendring a back glyph.
testImplementsFactoryInterface()
testGenerationByFactory()
I SignalGenerator $sig_gen
testRenderingWithSubslateAndButton()