ILIAS  trunk Revision v11.0_alpha-1866-gfa368f7776e
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
video_mp4_poster.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
38 function video_mp4_poster(): string
39 {
40  global $DIC;
41  $renderer = $DIC->ui()->renderer();
42  $f = $DIC->ui()->factory();
43 
44  $video = $f->player()->video("https://files.ilias.de/ILIAS-Video.mp4");
45  $video = $video->withPoster("assets/ui-examples/images/Image/HeaderIconLarge.svg");
46 
47  return $renderer->render($video);
48 }
$renderer
video_mp4_poster()
description: > Example for rendering a mp4 video player with a poster as a start screen...
global $DIC
Definition: shib_login.php:22