• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/configuration/dataprovider/controller.php
  • Класс: BitrixRestConfigurationDataProviderController
  • Вызов: Controller::get
public function get(string $code, array $setting = []): ?ProviderBase
{
	$result = null;

	$class = self::ITEM_LIST[$code];
	if ($class)
	{
		$result = $this->getProvider($class, $setting);
	}

	return $result;
}