• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/webform/form.php
  • Класс: Bitrix\Crm\WebForm\Form
  • Вызов: Form::getFieldsByType
public function getFieldsByType(string $type): array
{
	return array_filter(
		$this->getFields(),
		function ($value) use ($type) {
			return $value['TYPE'] === $type;
		}
	);
}