• Модуль: form
  • Путь к файлу: ~/bitrix/modules/form/classes/general/form_callformcrm.php
  • Класс: _CFormCrmSenderResult
  • Вызов: _CFormCrmSenderResult::_process
private function _process()
{
	if (!$this->bProcess)
	{
		if ($this->result_text <> '')
		{
			$this->result = CUtil::JsObjectToPhp($this->result_text);

			if (!is_array($this->result))
			{
				$this->result = null;
			}
			else
			{
				$this->result_code = intval($this->result['error']);
				if ($this->result_code >= 400)
				{
					$this->result_error = $this->result['error_message'];
				}
			}
		}

		$this->bProcess = true;
	}
}