public static function ExtensionManager::create in Markdown 8.2
Instantiates a new instance of this class.
This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.
Overrides ContainerInjectionInterface::create
2 calls to ExtensionManager::create()
- BaseExtension::validateSettings in src/
Plugin/ Markdown/ BaseExtension.php - Validates extension settings.
- InstallableRequirement::getObject in src/
Annotation/ InstallableRequirement.php - Retrieves the object defined by id/type.
File
- src/
PluginManager/ ExtensionManager.php, line 43
Class
- ExtensionManager
- Markdown Extension Plugin Manager.
Namespace
Drupal\markdown\PluginManagerCode
public static function create(ContainerInterface $container = NULL) {
if (!$container) {
$container = \Drupal::getContainer();
}
$instance = new static($container
->get('container.namespaces'), $container
->get('cache.discovery'), $container
->get('config.factory'), $container
->get('logger.channel.markdown'), $container
->get('module_handler'));
$instance
->setContainer($container);
return $instance;
}