• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_notify.php
  • Класс: CCalendarNotify
  • Вызов: CCalendarNotify::DeleteLocation
static function DeleteLocation($fields = [], $params = [])
{
	$fields['NOTIFY_EVENT'] = "delete_location";
	$fields['FROM_USER_ID'] = (int)$params["userId"];
	$fields['TO_USER_ID'] = (int)$params["guestId"];
	$fields['NOTIFY_TAG'] = "CALENDAR|LOCATION|".$params['locationId']."|". (int)$params["userId"];
	$fields['NOTIFY_SUB_TAG'] = "CALENDAR|LOCATION|".$params['locationId'];

	$fields['MESSAGE'] = Loc::getMessage('EC_NOTIFY_DELETE_LOCATION', [
		'#LOCATION#' => $params["location"]
	]);

	return $fields;
}