1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
textnodetype.php
См. документацию.
1<?
2namespace Bitrix\UI\EntitySelector;
3
5{
6 public const TEXT = 'text';
7 public const HTML = 'html';
8
9 public static function isValid($type): bool
10 {
11 return is_string($type) && ($type === self::TEXT || $type === self::HTML);
12 }
13}
$type
Определения options.php:106
static isValid($type)
Определения textnodetype.php:9