ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ 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
Definition:
class.ParticipantsRepository.php:24
ILIAS\BookginManager\Participants\ParticipantsRepository\removeFromAll
removeFromAll(int $user_id)
Definition:
class.ParticipantsRepository.php:30
ILIAS\BookginManager\Participants\ParticipantsRepository\__construct
__construct(protected \ilDBInterface $db)
Definition:
class.ParticipantsRepository.php:25
ILIAS\$db
$db
Definition:
class.ilias.php:60
ilDBInterface
Interface ilDBInterface.
Definition:
interface.ilDBInterface.php:30
ILIAS\BookginManager\Participants
Definition:
class.ParticipantsRepository.php:21
$user_id
int $user_id
Definition:
trait.ilExAssignmentTypeGUIBase.php:38
components
ILIAS
BookingManager
Participants
class.ParticipantsRepository.php
Generated on Sat Oct 18 2025 23:02:41 for ILIAS by
1.9.4 (using
Doxyfile
)