ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Image.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 use ILIAS\Data\URI;
26 
30 class Image extends Resource
31 {
32  public function __construct(
33  URI $image_url,
34  string $mime_type,
35  ?string $aria_label = null,
36  ?int $width = null,
37  ?int $height = null,
38  ) {
40  $image_url,
41  $mime_type,
42  (null !== $aria_label) ? new Text('og:image:alt', $aria_label) : new NullTag(),
43  (null !== $width) ? new Text('og:image:width', (string) $width) : new NullTag(),
44  (null !== $height) ? new Text('og:image:height', (string) $height) : new NullTag(),
45  );
46  }
47 
48  protected function getPropertyName(): string
49  {
50  return 'og:image';
51  }
52 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(URI $image_url, string $mime_type, ?string $aria_label=null, ?int $width=null, ?int $height=null,)
Definition: Image.php:32
__construct(Container $dic, ilPlugin $plugin)