Fill::save

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. Fill
  4. save
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/webform/fill.php
  • Класс: Bitrix\Crm\WebForm\Fill
  • Вызов: Fill::save
public function save()
{
	return $this->form->addResult(
		$this->getFilledFields(),
		[
			'ENTITIES' => $this->entities ? $this->entities->toSimpleArray(['typeId', 'id']) : [],
			'DISABLE_FIELD_CHECKING' => !$this->isFieldCheckingEnabled,
			'COMMON_FIELDS' => [],
			'PLACEHOLDERS' => $this->properties,
			'AGREEMENTS' => $this->getAppliedAgreements(),
			'STOP_CALLBACK' => false,
			'COMMON_DATA' => [
				'VISITED_PAGES' => [],
				'TRACE' => $this->trace
			],
		]
	);
}

Добавить комментарий