• Модуль: imconnector
  • Путь к файлу: ~/bitrix/modules/imconnector/lib/customconnectors.php
  • Класс: BitrixImConnectorCustomConnectors
  • Вызов: CustomConnectors::getListNotNeedSystemMessages
static function getListNotNeedSystemMessages(): array
{
	$result = array();

	foreach (self::getInstance()->getCustomConnectors() as $connector)
	{
		if ($connector['NEED_SYSTEM_MESSAGES'] === false)
		{
			$result[] = $connector['ID'];
		}
	}

	return $result;
}