• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/log_destination.php
  • Класс: CSocNetLogDestination
  • Вызов: CSocNetLogDestination::fillCrmEmails
static function fillCrmEmails(&$arDest)
{
	$arDest["CRMEMAILS"] = array();
	$arDest["LAST"]["CRMEMAILS"] = array();

	if (
		!empty($arDest)
		&& !empty($arDest["LAST"])
		&& !empty($arDest["LAST"]["USERS"])
		&& !empty($arDest["USERS"])
	)
	{
		foreach($arDest["LAST"]["USERS"] as $key => $value)
		{
			if (
				isset($arDest["USERS"][$key])
				&& is_array($arDest["USERS"][$key])
				&& isset($arDest["USERS"][$key]["isCrmEmail"])
				&& $arDest["USERS"][$key]["isCrmEmail"] === "Y"
			)
			{
				$arDest["CRMEMAILS"][$key] = $arDest["USERS"][$key];
				$arDest["LAST"]["CRMEMAILS"][$key] = $value;
			}
		}
	}
}