blob: a7c2519ed350fcc697647e347b42bc28763a79e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<?php
namespace Studip\Calendar;
/**
* The Studip\Calendar\Owner interface defines methods that classes whose instances own calendars
* shall implement to faciliate permission checks for that calendars.
*/
interface Owner
{
/**
* Retrieves the Owner object for a specified owner-ID.
*
* @param string $owner_id The ID of the owner.
*
* @return Owner|null Either the Owner object if it can be found or null in case
* it cannot be found.
*/
public static function getCalendarOwner(string $owner_id) : ?Owner;
/**
* Determines whether the specified user has read permissions to the calendar.
*
* @param string|null $user_id The ID of the user for which to determine write permissions.
* Defaults to the current user if no user-ID is provided.
*
* @return bool True, if the user has read permissions, false otherwise.
*/
public function isCalendarReadable(?string $user_id = null) : bool;
/**
* Determines whether the specified user has write permissions to the calendar.
*
* @param string|null $user_id The ID of the user for which to determine write permissions.
* Defaults to the current user if no user-ID is provided.
*
* @return bool True, if the user has write permissions, false otherwise.
*/
public function isCalendarWritable(?string $user_id = null) : bool;
}
|