• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/livefeed.php
  • Класс: \CCrmLiveFeedEntity
  • Вызов: CCrmLiveFeedEntity::GetForSql
static function GetForSql($types)
{
	if(!is_array($types) || empty($types))
	{
		return self::GetAllForSql();
	}

	global $DB;
	$result = array();
	foreach($types as $type)
	{
		if(self::IsDefined($type))
		{
			$result[] = "'".($DB->ForSql($type))."'";
		}
	}
	return $result;
}