Your IP : 172.69.214.233


Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/modules/ui/lib/entityselector/
Upload File :
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);
	}
}