- Модуль: crm
- Путь к файлу: ~/bitrix/modules/crm/lib/webform/manager.php
- Класс: Bitrix\Crm\WebForm\Manager
- Вызов: Manager::getListForEntitySelector
static function getListForEntitySelector(string $entityId, string $tabId)
{
static $result = null;
if (!is_array($result))
{
$formList = self::getListPlain(['select' => ['ID', 'NAME']]);
$result = array_map(fn($form): array => [
'id' => $form['ID'],
'entityId' => $entityId,
'tabs' => $tabId,
'title' => sprintf('%s [%d]', $form['NAME'], $form['ID']),
], $formList);
}
return $result;
}