ILIAS  trunk Revision v12.0_alpha-1227-g7ff6d300864
NullPublisher.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24{
25 public function block(int $obj_id): void
26 {
27 }
28
29 public function checkPermissionsForBlock(int $ref_id, string $type, int $obj_id): bool
30 {
31 return false;
32 }
33
34 public function unblock(int $obj_id): void
35 {
36 }
37
38 public function checkPermissionsForUnblock(int $ref_id, string $type, int $obj_id): bool
39 {
40 return false;
41 }
42
43 public function publish(int $obj_id, string $type): void
44 {
45 }
46
47 public function checkPermissionsForPublish(int $ref_id, string $type, int $obj_id): bool
48 {
49 return false;
50 }
51
52 public function withdraw(int $obj_id): void
53 {
54 }
55
56 public function checkPermissionsForWithdraw(int $ref_id, string $type, int $obj_id): bool
57 {
58 return false;
59 }
60
61 public function submit(int $obj_id): void
62 {
63 }
64
65 public function checkPermissionsForSubmit(int $ref_id, string $type, int $obj_id): bool
66 {
67 return false;
68 }
69
70 public function accept(int $obj_id, string $type): void
71 {
72 }
73
74 public function checkPermissionsForAccept(int $ref_id, string $type, int $obj_id): bool
75 {
76 return false;
77 }
78
79 public function reject(int $obj_id): void
80 {
81 }
82
83 public function checkPermissionsForReject(int $ref_id, string $type, int $obj_id): bool
84 {
85 return false;
86 }
87}
checkPermissionsForWithdraw(int $ref_id, string $type, int $obj_id)
checkPermissionsForAccept(int $ref_id, string $type, int $obj_id)
checkPermissionsForReject(int $ref_id, string $type, int $obj_id)
checkPermissionsForPublish(int $ref_id, string $type, int $obj_id)
checkPermissionsForUnblock(int $ref_id, string $type, int $obj_id)
checkPermissionsForSubmit(int $ref_id, string $type, int $obj_id)
checkPermissionsForBlock(int $ref_id, string $type, int $obj_id)
$ref_id
Definition: ltiauth.php:66