ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
class.ParticipantsRepository.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\BookginManager\Participants
;
22
23
class
ParticipantsRepository
24
{
25
public
function
__construct
(
26
protected
\
ilDBInterface
$db
27
) {
28
}
29
30
public
function
removeFromAll
(
int
$user_id
): void
31
{
32
$this->db->manipulateF(
33
"DELETE FROM booking_member WHERE "
.
34
" user_id = %s"
,
35
[
"integer"
],
36
[$user_id]
37
);
38
}
39
}
ILIAS\BookginManager\Participants\ParticipantsRepository\__construct
__construct(protected \ilDBInterface $db)
Definition:
class.ParticipantsRepository.php:25
$user_id
int $user_id
Definition:
trait.ilExAssignmentTypeGUIBase.php:38
ILIAS\BookginManager\Participants\ParticipantsRepository
Definition:
class.ParticipantsRepository.php:23
ILIAS\BookginManager\Participants
Definition:
class.ParticipantsRepository.php:21
ilDBInterface
ILIAS\BookginManager\Participants\ParticipantsRepository\removeFromAll
removeFromAll(int $user_id)
Definition:
class.ParticipantsRepository.php:30
ILIAS\$db
$db
Definition:
class.ilias.php:60
components
ILIAS
BookingManager
Participants
class.ParticipantsRepository.php
Generated on Wed Sep 3 2025 23:02:30 for ILIAS by
1.8.13 (using
Doxyfile
)