1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
emptyoperator.php
См. документацию.
1<?php
2
3namespace Bitrix\Bizproc\Activity\Operator;
4
5use Bitrix\Bizproc\FieldType;
6use Bitrix\Main\Localization\Loc;
7
9{
10 public static function getCode(): string
11 {
12 return 'empty';
13 }
14
15 public static function getTitle(): string
16 {
17 return Loc::getMessage('BIZPROC_ACTIVITY_CONDITION_OPERATORS_EMPTY_OPERATOR_TITLE') ?? '';
18 }
19
20 protected function toBaseType(): void
21 {}
22
23 public function check(): bool
24 {
25 return \CBPHelper::isEmptyValue($this->toCheck);
26 }
27}