• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/integration/sign/form.php
  • Класс: Bitrix\Crm\Integration\Sign\Form
  • Вызов: Form::loadByXmlId
public function loadByXmlId(string $xmlId): self
{
	$id = Crm\WebForm\Internals\FormTable::query()
		->setSelect(['ID'])
		->where('XML_ID', $xmlId)
		->setLimit(1)
		->fetch()['ID'] ?? null
	;
	if (!$id)
	{
		return $this;
	}

	return $this->load($id);
}