Form::getCaptchaAction

  1. Bitrix24 API (v. 23.675.0)
  2. crm
  3. Form
  4. getCaptchaAction
  • Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/form.php
  • Класс: Bitrix\Crm\Controller\Form
  • Вызов: Form::getCaptchaAction
public function getCaptchaAction(): array
{
	if (!$this->checkFormAccess())
	{
		return [];
	}

	return [
		'key' => WebForm\ReCaptcha::getKey(2),
		'secret' => WebForm\ReCaptcha::getSecret(2),
		'canChange' => $this->getFormAccess(true),
		'hasDefaults' => WebForm\ReCaptcha::getDefaultKey(2) && WebForm\ReCaptcha::getDefaultSecret(2),
	];
}

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