| Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/ui/lib/entityselector/ |
| Current File : /var/www/element/data/www/revenuestory.ru/bitrix/modules/ui/lib/entityselector/textnodetype.php |
<?
namespace Bitrix\UI\EntitySelector;
class TextNodeType
{
public const TEXT = 'text';
public const HTML = 'html';
public static function isValid($type): bool
{
return is_string($type) && ($type === self::TEXT || $type === self::HTML);
}
}