• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/integration/crmmanager.php
  • Класс: BitrixSalesCenterIntegrationCrmManager
  • Вызов: CrmManager::getWebForms
public function getWebForms()
{
	if($this->forms === null)
	{
		$this->forms = [];
		if($this->isEnabled)
		{
			$formList = FormTable::getDefaultTypeList([
				'select' => ['ID', 'NAME', 'SECURITY_CODE'],
				'filter' => [
					'=ACTIVE' => 'Y',
				],
				'order' => [
					'IS_CALLBACK_FORM' => 'ASC',
					'ID' => 'DESC',
				],
			]);
			while($form = $formList->fetch())
			{
				$this->forms[$form['ID']] = $form;
			}
		}
	}

	return $this->forms;
}