1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
ChangeCollabMemberRoleLogEntry.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 'CHANGE_COLLAB_MEMBER_ROLE';
12 }
13
14 public function setNewRole(string $newRole): self
15 {
16 return $this->setDataValue('newRole', $newRole);
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
setInitiator(int $initiator)
setNewRole(string $newRole)
static getEventType()