public TypeLinkManager::__construct(CacheBackendInterface $cache, ModuleHandlerInterface $module_handler, ConfigFactoryInterface $config_factory, RequestStack $request_stack, EntityTypeBundleInfoInterface$bundle_info_service)
Constructor.
Parameters
\Drupal\Core\Cache\CacheBackendInterface $cache: The injected cache backend for caching type URIs.
\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler service.
\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory service.
\Symfony\Component\HttpFoundation\RequestStack $request_stack: The request stack.
\Drupal\Core\Entity\EntityTypeBundleInfoInterface $bundle_info_service: The bundle info service.
File
- core/modules/rest/src/LinkManager/TypeLinkManager.php, line 49
Class
Namespace
Drupal\rest\LinkManager
Code
public function __construct(CacheBackendInterface $cache, ModuleHandlerInterface $module_handler, ConfigFactoryInterface $config_factory, RequestStack $request_stack, EntityTypeBundleInfoInterface $bundle_info_service) {
$this->cache = $cache;
$this->configFactory = $config_factory;
$this->moduleHandler = $module_handler;
$this->requestStack = $request_stack;
$this->bundleInfoService = $bundle_info_service;
}
Please login to continue.