ILIAS  release_8 Revision v8.24
CopyrightData.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
26{
27 protected string $full_name;
28 protected ?URI $link;
29 protected ?URI $image_link;
30 protected string $alt_text;
31
32 public function __construct(
33 string $full_name,
34 ?URI $link,
36 string $alt_text
37 ) {
38 $this->full_name = $full_name;
39 $this->link = $link;
40 $this->alt_text = $alt_text;
41 $this->image_link = $image_link;
42 }
43
44 public function fullName(): string
45 {
46 return $this->full_name;
47 }
48
49 public function link(): ?URI
50 {
51 return $this->link;
52 }
53
54 public function imageLink(): ?URI
55 {
56 return $this->image_link;
57 }
58
59 public function altText(): string
60 {
61 return $this->alt_text;
62 }
63}
The scope of this class is split ilias-conform URI's into components.
Definition: URI.php:35
__construct(string $full_name, ?URI $link, ?URI $image_link, string $alt_text)