ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
InlineCss.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
21 
26 class InlineCss extends AbstractMedia
27 {
28  public const MEDIA_SCREEN = "screen";
32  private string $media;
33 
39  public function __construct(string $content, string $version, string $media = self::MEDIA_SCREEN)
40  {
41  parent::__construct($content, $version);
42  $this->media = $media;
43  }
44 
48  public function getMedia(): string
49  {
50  return $this->media;
51  }
52 }
__construct(string $content, string $version, string $media=self::MEDIA_SCREEN)
InlineCss constructor.
Definition: InlineCss.php:39
__construct(Container $dic, ilPlugin $plugin)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...