• Модуль: socialnetwork
  • Путь к файлу: ~/bitrix/modules/socialnetwork/classes/general/log_destination.php
  • Класс: CSocNetLogDestination
  • Вызов: CSocNetLogDestination::fillEmails
static function fillEmails(&$arDest)
{
	$arDest["EMAILS"] = array();
	$arDest["LAST"]["EMAILS"] = 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]["isEmail"])
				&& $arDest["USERS"][$key]["isEmail"] === "Y"
			)
			{
				$arDest["EMAILS"][$key] = $arDest["USERS"][$key];
				$arDest["LAST"]["EMAILS"][$key] = $value;
			}
		}
	}
}