You are here

public static function HomeboxForm::create in Homebox 8

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 FormBase::create

File

src/Form/HomeboxForm.php, line 86

Class

HomeboxForm
Class HomeboxForm.

Namespace

Drupal\homebox\Form

Code

public static function create(ContainerInterface $container) {

  /* @var CachedDiscoveryClearerInterface $plugin_cache_clearer */
  $plugin_cache_clearer = $container
    ->get('plugin.cache_clearer');

  /* @var CacheBackendInterface $cache_render */
  $cache_render = $container
    ->get('cache.render');

  /* @var \Drupal\Core\Plugin\Context\ContextRepositoryInterface $context_repository */
  $context_repository = $container
    ->get('context.repository');

  /* @var \Drupal\Core\Block\BlockManagerInterface $block_manager */
  $block_manager = $container
    ->get('plugin.manager.block');

  /* @var \Drupal\Core\Layout\LayoutPluginManager $layout_plugin_manager */
  $layout_plugin_manager = $container
    ->get('plugin.manager.core.layout');
  return new static($layout_plugin_manager, $block_manager, $context_repository, $cache_render, $plugin_cache_clearer);
}