public static function ParserManager::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
4 calls to ParserManager::create()
- BaseParser::validateSettings in src/
Plugin/ Markdown/ BaseParser.php - Validates parser settings.
- InstallableRequirement::getObject in src/
Annotation/ InstallableRequirement.php - Retrieves the object defined by id/type.
- markdown_requirements in ./
markdown.install - Implements hook_requirements().
- _markdown_update_config in ./
markdown.post_update.php - Updates all markdown config.
File
- src/
PluginManager/ ParserManager.php, line 44
Class
- ParserManager
- Markdown Parser 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;
}