ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
NullCopyrightHandler.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
24 {
25  public function isCopyrightSelectionActive(): bool
26  {
27  return false;
28  }
29 
30  public function copyrightForExport(string $copyright): string
31  {
32  return '';
33  }
34 
35  public function copyrightFromExport(string $copyright): string
36  {
37  return '';
38  }
39 
40  public function copyrightAsString(string $copyright): string
41  {
42  return '';
43  }
44 }