Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
textnodetype.php
1<?
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}