3 declare(strict_types=1);
21 require_once(__DIR__ .
'/ModalBase.php');
37 $this->assertEquals([$page], $lightbox->getPages());
44 $this->assertEquals($pages, $lightbox->getPages());
49 $image =
new I\Component\Image\Image(
"responsive",
'src/fake/image.jpg',
'description');
53 $this->assertEquals($expected, $actual);
61 $this->assertEquals($expected, $actual);
66 $image1 =
new I\Component\Image\Image(
"responsive",
'src/fake/image.jpg',
'description');
76 $this->assertEquals($expected, $actual);
87 <div
class=
"modal fade il-modal-lightbox" tabindex=
"-1" role=
"dialog" id=
"id_1">
88 <div
class=
"modal-dialog modal-lg" role=
"document">
89 <div
class=
"modal-content il-modal-lightbox-page">
90 <div
class=
"modal-header">
91 <button type=
"button" class=
"close" data-dismiss=
"modal" aria-label=
"close"><span aria-hidden=
"true">×</span></button>
92 <span
class=
"modal-title">title</span>
94 <div
class=
"modal-body">
95 <div
id=
"id_1_carousel" class=
"carousel slide" data-ride=
"carousel" data-interval=
"false">
99 <div
class=
"carousel-inner" role=
"listbox">
101 <div
class=
"item active text-only" data-title=
"title">
115 window.setTimeout(
function() {
116 $(
'#id_1').on(
'shown.bs.modal',
function() {
117 $(
'.modal-backdrop.in').css(
'opacity',
'0.9');
119 $(
'#id_1').on(
'show.bs.modal',
function (e) {
120 var elm = $(
this).find(
'.carousel-inner .item.active').first();
122 if (elm.hasClass(
'text-only')) {
123 elm.closest(
'.carousel').addClass(
'text-only');
125 elm.closest(
'.carousel').removeClass(
'text-only');
128 $(
'#id_1_carousel').on(
'slide.bs.carousel',
function(e) {
129 var elm = $(e.relatedTarget);
131 if (elm.hasClass(
'text-only')) {
132 elm.closest(
'.carousel').addClass(
'text-only');
134 elm.closest(
'.carousel').removeClass(
'text-only');
137 $(
'#id_1_carousel').on(
'slid.bs.carousel',
function() {
138 var title = $(
this).find(
'.carousel-inner .item.active').attr(
'data-title');
139 $(
'#id_1').find(
'.modal-title').text(title);
149 <div
class=
"modal fade il-modal-lightbox" tabindex=
"-1" role=
"dialog" id=
"id_1">
150 <div
class=
"modal-dialog modal-lg" role=
"document">
151 <div
class=
"modal-content il-modal-lightbox-page">
152 <div
class=
"modal-header">
153 <button type=
"button" class=
"close" data-dismiss=
"modal" aria-label=
"close"><span aria-hidden=
"true">×</span></button>
154 <span
class=
"modal-title">title</span>
156 <div
class=
"modal-body">
157 <div
id=
"id_1_carousel" class=
"carousel slide" data-ride=
"carousel" data-interval=
"false">
161 <div
class=
"carousel-inner" role=
"listbox">
163 <div
class=
"item active" data-title=
"title">
169 <img src=
"src/fake/image.jpg" class=
"img-responsive" alt=
"description" />
173 <div
class=
"carousel-caption">
188 window.setTimeout(
function() {
189 $(
'#id_1').on(
'shown.bs.modal',
function() {
190 $(
'.modal-backdrop.in').css(
'opacity',
'0.9');
192 $(
'#id_1').on(
'show.bs.modal',
function (e) {
193 var elm = $(
this).find(
'.carousel-inner .item.active').first();
195 if (elm.hasClass(
'text-only')) {
196 elm.closest(
'.carousel').addClass(
'text-only');
198 elm.closest(
'.carousel').removeClass(
'text-only');
201 $(
'#id_1_carousel').on(
'slide.bs.carousel',
function(e) {
202 var elm = $(e.relatedTarget);
204 if (elm.hasClass(
'text-only')) {
205 elm.closest(
'.carousel').addClass(
'text-only');
207 elm.closest(
'.carousel').removeClass(
'text-only');
210 $(
'#id_1_carousel').on(
'slid.bs.carousel',
function() {
211 var title = $(
this).find(
'.carousel-inner .item.active').attr(
'data-title');
212 $(
'#id_1').find(
'.modal-title').text(title);
222 <div
class=
"modal fade il-modal-lightbox" tabindex=
"-1" role=
"dialog" id=
"id_1">
223 <div
class=
"modal-dialog modal-lg" role=
"document">
224 <div
class=
"modal-content il-modal-lightbox-page">
225 <div
class=
"modal-header">
226 <button type=
"button" class=
"close" data-dismiss=
"modal" aria-label=
"close"><span aria-hidden=
"true">×</span></button>
227 <span
class=
"modal-title">title</span>
229 <div
class=
"modal-body">
230 <div
id=
"id_1_carousel" class=
"carousel slide" data-ride=
"carousel" data-interval=
"false">
233 <ol
class=
"carousel-indicators">
235 <li data-target=
"#id_1_carousel" data-slide-to=
"0" class=
"active"></li>
237 <li data-target=
"#id_1_carousel" data-slide-to=
"1" class=
""></li>
242 <div
class=
"carousel-inner" role=
"listbox">
244 <div
class=
"item active text-only" data-title=
"title">
248 <div
class=
"item" data-title=
"title">
254 <img src=
"src/fake/image.jpg" class=
"img-responsive" alt=
"description" />
258 <div
class=
"carousel-caption">
266 <a
class=
"left carousel-control" href=
"#id_1_carousel" role=
"button" data-slide=
"prev">
267 <span
class=
"glyphicon glyphicon-chevron-left" aria-hidden=
"true"></span>
268 <span
class=
"sr-only">Previous</span>
270 <a
class=
"right carousel-control" href=
"#id_1_carousel" role=
"button" data-slide=
"next">
271 <span
class=
"glyphicon glyphicon-chevron-right" aria-hidden=
"true"></span>
272 <span
class=
"sr-only">Next</span>
282 window.setTimeout(
function() {
283 $(
'#id_1').on(
'shown.bs.modal',
function() {
284 $(
'.modal-backdrop.in').css(
'opacity',
'0.9');
286 $(
'#id_1').on(
'show.bs.modal',
function (e) {
287 var elm = $(
this).find(
'.carousel-inner .item.active').first();
289 if (elm.hasClass(
'text-only')) {
290 elm.closest(
'.carousel').addClass(
'text-only');
292 elm.closest(
'.carousel').removeClass(
'text-only');
295 $(
'#id_1_carousel').on(
'slide.bs.carousel',
function(e) {
296 var elm = $(e.relatedTarget);
298 if (elm.hasClass(
'text-only')) {
299 elm.closest(
'.carousel').addClass(
'text-only');
301 elm.closest(
'.carousel').removeClass(
'text-only');
304 $(
'#id_1_carousel').on(
'slid.bs.carousel',
function() {
305 var title = $(
this).find(
'.carousel-inner .item.active').attr(
'data-title');
306 $(
'#id_1').find(
'.modal-title').text(title);
316 public function getTitle():
string getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
getExpectedMixedPagesHTML()
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...
getExpectedImagePageHTML()
A component is the most general form of an entity in the UI.
getExpectedTextPageHTML()
Base class for modal tests.
test_different_page_type_rendering()
normalizeHTML(string $html)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
test_simple_image_page_rendering()
Some very basic component implementation.
test_simple_text_page_rendering()