• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/webform/internals/formcounter.php
  • Класс: Bitrix\Crm\WebForm\Internals\FormCounterTable
  • Вызов: FormCounterTable::getCurrentFormCounter
static function getCurrentFormCounter($formId)
{
	$counterDb = static::getList(array(
		'select' => array('ID'),
		'filter' => array('=FORM_ID' => $formId),
		'order' => array('DATE_CREATE' => 'DESC'),
		'limit' => 1
	));
	if($counter = $counterDb->fetch())
	{
		return $counter['ID'];
	}
	else
	{
		return static::addByFormId($formId);
	}
}