• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/config.php
  • Класс: BitrixImOpenLinesConfig
  • Вызов: Config::getAllLinesSettings
static function getAllLinesSettings(array $select): array
{
	$rawConfigs = ModelConfigTable::getList([
		'select' => array_merge(['ID'], $select),
		'filter' => ['=ACTIVE' => 'Y'],
		'order' => ['ID' => 'ASC'],
		'cache' => ['ttl' => 86400]
	]);

	return $rawConfigs->fetchAll();
}