1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
UpdateCollabLogEntry.php
См. документацию.
1<?php
2
3namespace Bitrix\Socialnetwork\Collab\Log\Entry;
4
5use Bitrix\Socialnetwork\Collab\Log\AbstractCollabLogEntry;
6
8{
9 public const PERMISSION_FIELD_PREFIX = 'permission';
10
11 static public function getEventType(): string
12 {
13 return 'UPDATE_COLLAB';
14 }
15
16 public function setFieldName(string $fieldName): self
17 {
18 return $this->setDataValue('fieldName', $fieldName);
19 }
20
21 public function setPreviousValue(mixed $value): self
22 {
23 return $this->setDataValue('previousValue', $value);
24 }
25
26 public function setCurrentValue(mixed $value): self
27 {
28 return $this->setDataValue('currentValue', $value);
29 }
30}
Определения AbstractCollabLogEntry.php:10
setDataValue(string $key, mixed $value)
Определения AbstractCollabLogEntry.php:100
Определения UpdateCollabLogEntry.php:8
setPreviousValue(mixed $value)
Определения UpdateCollabLogEntry.php:21
const PERMISSION_FIELD_PREFIX
Определения UpdateCollabLogEntry.php:9
setFieldName(string $fieldName)
Определения UpdateCollabLogEntry.php:16
setCurrentValue(mixed $value)
Определения UpdateCollabLogEntry.php:26
static getEventType()
Определения UpdateCollabLogEntry.php:11