ChannelType::isDefined

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. ChannelType
  4. isDefined
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/channel/channeltype.php
  • Класс: Bitrix\Crm\Integration\Channel\ChannelType
  • Вызов: ChannelType::isDefined
static function isDefined($typeID)
{
	if(!is_numeric($typeID))
	{
		return false;
	}

	if(!is_int($typeID))
	{
		$typeID = (int)$typeID;
	}

	return $typeID >= self::EMAIL_NAME && $typeID <= self::EXTERNAL_MAGENTO;
}

Добавить комментарий