1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
businessid.php
См. документацию.
1<?php
2
4
5
9
10final class BusinessId implements Fields\IField
11{
16 static function getDefaultValue()
17 {
19 {
20 try
21 {
23 }
24 catch (SystemException $e)
25 {
26 return '';
27 }
28 }
29
30 return Service::getEngine()?->getInterface()?->getAppID();
31 }
32
39 static function checkValue($value): bool
40 {
41 return $value === static::getDefaultValue();
42
43 }
44
48 static function available(): bool
49 {
50 return true;
51 }
52
56 static function required(): bool
57 {
58 return true;
59 }
60}
static register(string $serviceUrl='')
Определения service.php:318
static isRegistered()
Определения service.php:65
static getEngine(?Request $request=null)
Определения service.php:292