3 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
22 require_once(__DIR__ .
"/../../../Base.php");
40 public function getIcon():
C\Symbol\Icon\Standard
42 return $this->
getUIFactory()->symbol()->icon()->standard(
"name",
"aria_label",
"small",
false);
50 public function button(): C\Button\Factory
52 return new I\Button\Factory();
56 return new I\Symbol\Factory(
62 public function item(): C\Item\Factory
64 return new I\Item\Factory();
66 public function mainControls(): C\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]);
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=
"./templates/default/images/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>
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
brutallyTrimHTML(string $html)
A more radical version of normalizeHTML.
testImplementsFactoryInterface()
Provides common functionality for UI tests.
testGenerationByFactory()
I SignalGenerator $sig_gen
testRenderingWithSubslateAndButton()