Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
emptyoperator.php
1<?php
2
4
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}
static getMessage($code, $replace=null, $language=null)
Definition loc.php:29