ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
show_popover_with_vertical_scrollbars.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
35 {
36  global $DIC;
37  $factory = $DIC->ui()->factory();
38  $renderer = $DIC->ui()->renderer();
39 
40  // Note: A list should be rendered with the listing popover, e.g. $factory->popover()->listing()
41  // However, at the moment there is no component present representing such list items, so this example
42  // also uses a standard popover.
43 
44  $series = [
45  'Breaking Bad',
46  'Big Bang Theory',
47  'Dexter',
48  'Better Call Saul',
49  'Narcos',
50  'Ray Donovan',
51  'Simpsons',
52  'South Park',
53  'Fargo',
54  'Bloodline',
55  'The Walking Dead',
56  'New Girl',
57  'Sons of Anarchy',
58  'How I Met Your Mother',
59  ];
60  $list = $renderer->render($factory->listing()->unordered($series));
61  // Note: The Popover does not restrict the height. It is the responsibility of the content component
62  // to define the max height and to display vertical scrollbars, if necessary.
63  // At the moment, the renderer of a component is not aware of the context it is rendering the component,
64  // e.g. inside a Popover.
65  // The inline code below simulates this behaviour. Here we want to reduce the
66  // height of the list to 200px and display vertical scrollbars, if needed.
67  $content = "<div style='max-height: 200px; overflow-y: auto; padding-right: 10px;'>{$list}</div>";
68 
69  $popover = $factory->popover()->standard($factory->legacy()->content($content))->withTitle('Series');
70  $button = $factory->button()->standard('Show me some Series', '#')
71  ->withOnClick($popover->getShowSignal());
72 
73  return $renderer->render([$popover, $button]);
74 }
$renderer
global $DIC
Definition: shib_login.php:22
show_popover_with_vertical_scrollbars()
description: > Example for rendering a standard popover with vertical scrollbars.