-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupervisor.php
More file actions
76 lines (68 loc) · 1.98 KB
/
supervisor.php
File metadata and controls
76 lines (68 loc) · 1.98 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
// This file is part of local_lbplanner.
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Model class for a filter for slots
*
* @package local_lbplanner
* @subpackage model
* @copyright 2025 Pallasys
* @license https://creativecommons.org/licenses/by-nc-sa/4.0/ CC-BY-NC-SA 4.0 International or later
*/
namespace local_lbplanner\model;
/**
* Model class for a filter for slots
*/
class supervisor {
/**
* @var int $id ID of filter
*/
public int $id;
/**
* @var int $slotid ID of linked slot
*/
public int $slotid;
/**
* @var int $userid ID of user
*/
public int $userid;
/**
* Constructs new slot_filter
* @param int $id ID of filter
* @param int $slotid ID of linked slot
* @param int $userid ID of user
*/
public function __construct(int $id, int $slotid, int $userid) {
$this->id = $id;
$this->slotid = $slotid;
$this->userid = $userid;
}
/**
* Prepares data for the DB endpoint.
* doesn't set ID if it's 0
*
* @return object a representation of this supervisor and its data
*/
public function prepare_for_db(): object {
$obj = new \stdClass();
$obj->id = $this->id;
$obj->slotid = $this->slotid;
$obj->userid = $this->userid;
if ($this->id !== 0) {
$obj->id = $this->id;
}
return $obj;
}
}