1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
RemoveUserFromCollabLogEntry.php
См. документацию.
1<?php
2
3namespace Bitrix\Socialnetwork\Collab\Log\Entry;
4
5use Bitrix\Socialnetwork\Collab\Log\AbstractCollabLogEntry;
6
8{
9 static public function getEventType(): string
10 {
11 return 'REMOVE_USER_FROM_COLLAB';
12 }
13
14 public function setRole(string $role): self
15 {
16 return $this->setDataValue('role', $role);
17 }
18
19 public function setInitiator(int $initiator): self
20 {
21 return $this->setDataValue('initiator', $initiator);
22 }
23}
Определения AbstractCollabLogEntry.php:10
setDataValue(string $key, mixed $value)
Определения AbstractCollabLogEntry.php:100
Определения RemoveUserFromCollabLogEntry.php:8
setInitiator(int $initiator)
setRole(string $role)
static getEventType()
Определения RemoveUserFromCollabLogEntry.php:9