ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
CopyrightInterface.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 public function isOutdated(): bool;
32
33 public function identifier(): string;
34
35 public function title(): string;
36
37 public function description(): string;
38
45 public function presentAsUIComponents(): array;
46
53 public function presentAsImageOnly(): ?Icon;
54
62 public function presentAsLinkOnly(): ?Link;
63
68 public function presentAsString(): string;
69}
presentAsLinkOnly()
The copyright just as a link, for use e.g.
presentAsUIComponents()
The copyright as UI Components, as it should be presented in the UI almost everywhere.
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