ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
NullCopyright.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
26
28{
29 public function isDefault(): bool
30 {
31 return false;
32 }
33
34 public function isOutdated(): bool
35 {
36 return false;
37 }
38
39 public function identifier(): string
40 {
41 return '';
42 }
43
44 public function title(): string
45 {
46 return '';
47 }
48
49 public function description(): string
50 {
51 return '';
52 }
53
57 public function presentAsUIComponents(): array
58 {
59 return [];
60 }
61
62 public function presentAsImageOnly(): ?Icon
63 {
64 return null;
65 }
66
67 public function presentAsLinkOnly(): ?Link
68 {
69 return null;
70 }
71
72 public function presentAsString(): string
73 {
74 return '';
75 }
76}
presentAsLinkOnly()
The copyright just as a link, for use e.g.
presentAsImageOnly()
The copyright just as its image, for use e.g.
presentAsString()
The copyright without image in a reduced presentation, for displaying copyright where no UI component...
This describes how an icon could be modified during construction of UI.
Definition: Icon.php:29