ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
UserEvent.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\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\User\UserEvent\__construct
__construct(protected InternalDomainService $domain)
Definition:
UserEvent.php:27
$user_id
int $user_id
Definition:
trait.ilExAssignmentTypeGUIBase.php:38
ILIAS\BookingManager\InternalDomainService
Author: Alexander Killing killing@leifos.de
Definition:
class.InternalDomainService.php:34
ILIAS\User\UserEvent
Definition:
UserEvent.php:25
InternalDomainService
ILIAS\User\UserEvent\handleDeletion
handleDeletion(int $user_id)
Definition:
UserEvent.php:33
ILIAS\User
Definition:
UserEvent.php:21
components
ILIAS
BookingManager
User
UserEvent.php
Generated on Sun Aug 31 2025 23:02:26 for ILIAS by
1.8.13 (using
Doxyfile
)