ILIAS
release_9 Revision v9.13-25-g2c18ec4c24f
◀ ilDoc Overview
UserEvent.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\BookingManager\User
;
22
23
use
ILIAS\BookingManager\InternalDomainService
;
24
25
class
UserEvent
26
{
27
public
function
__construct
(
28
protected
InternalDomainService
$domain
29
) {
30
31
}
32
33
public
function
handleDeletion
(
int
$user_id): void
34
{
35
$p = $this->domain->participants();
36
$p->removeFromAll($user_id);
37
}
38
}
ILIAS\BookingManager\User\UserEvent\__construct
__construct(protected InternalDomainService $domain)
Definition:
UserEvent.php:27
ILIAS\BookingManager\User\UserEvent\handleDeletion
handleDeletion(int $user_id)
Definition:
UserEvent.php:33
ILIAS\BookingManager\User\UserEvent
Definition:
UserEvent.php:25
ILIAS\BookingManager\InternalDomainService
Definition:
class.InternalDomainService.php:33
ILIAS\BookingManager\User
Definition:
UserEvent.php:21
InternalDomainService
Modules
BookingManager
User
UserEvent.php
Generated on Wed Sep 10 2025 14:10:42 for ILIAS by
1.8.13 (using
Doxyfile
)