1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
AllowGuestsInvitationField.php
См. документацию.
1<?php
2
4
9
11{
12 public const NAME = 'allowGuestsInvitation';
13 public const DB_NAME = 'ALLOW_GUESTS_INVITATION';
14
15 public const DEFAULT_VALUE = 'Y';
16
17 #[InArray(['Y', 'N'])]
18 protected string $value;
19
20 public function __construct(string $value)
21 {
22 parent::__construct(static::DB_NAME, strtoupper($value));
23 }
24
25 protected function applyImplementation(Collab $collab): Result
26 {
27 return new Result();
28 }
29}
Определения result.php:20