ILIAS  trunk Revision v11.0_alpha-1753-gb21ca8c4367
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
EntryInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\MetaData\Copyright;
22 
23 interface EntryInterface
24 {
25  public function id(): int;
26 
27  public function title(): string;
28 
29  public function description(): string;
30 
31  public function isDefault(): bool;
32 
33  public function isOutdated(): bool;
34 
35  public function position(): int;
36 
37  public function copyrightData(): CopyrightDataInterface;
38 }