ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
NullSettings.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
25 public function isCopyrightSelectionActive(): bool
26 {
27 return false;
28 }
29
30 public function activateCopyrightSelection(bool $status): void
31 {
32 }
33
34 public function isOAIPMHActive(): bool
35 {
36 return false;
37 }
38
39 public function activateOAIPMH(bool $status): void
40 {
41 }
42
43 public function getOAIRepositoryName(): string
44 {
45 return '';
46 }
47
48 public function saveOAIRepositoryName(string $oai_repository_name): void
49 {
50 }
51
52 public function getOAIIdentifierPrefix(): string
53 {
54 return '';
55 }
56
57 public function saveOAIIdentifierPrefix(string $oai_identifier_prefix): void
58 {
59 }
60
61 public function getOAIContactMail(): string
62 {
63 return '';
64 }
65
66 public function saveOAIContactMail(string $oai_contact_mail): void
67 {
68 }
69}
saveOAIRepositoryName(string $oai_repository_name)
saveOAIIdentifierPrefix(string $oai_identifier_prefix)
saveOAIContactMail(string $oai_contact_mail)