Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
businessid.php
1<?php
2
4
5
8
9final class BusinessId implements Fields\IField
10{
15 static function getDefaultValue()
16 {
18 {
20 }
21
22 return Service::getEngine()->getInterface()->getAppID();
23 }
24
31 static function checkValue($value): bool
32 {
33 return $value === static::getDefaultValue();
34
35 }
36
40 static function available(): bool
41 {
42 return true;
43 }
44
48 static function required(): bool
49 {
50 return true;
51 }
52}
static isRegistered()
Definition service.php:59
static getEngine()
Definition service.php:278
static register()
Definition service.php:293