Exemple #1
0
 /**
  * Constructs a \Drupal\commerce\Plugin\views\field\EntityBundle object.
  *
  * @param array $configuration
  *   A configuration array containing information about the plugin instance.
  * @param string $plugin_id
  *   The plugin_id for the plugin instance.
  * @param mixed $plugin_definition
  *   The plugin implementation definition.
  * @param \Drupal\Core\Entity\EntityManagerInterface $entity_manager
  *   The field formatter plugin manager.
  * @param \Drupal\Core\Field\FormatterPluginManager $formatter_plugin_manager
  *   The field formatter plugin manager.
  * @param \Drupal\Core\Field\FieldTypePluginManagerInterface $field_type_plugin_manager
  *   The field plugin type manager.
  * @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
  *   The language manager.
  * @param \Drupal\Core\Render\RendererInterface $renderer
  *   The renderer.
  *  @param \Drupal\Core\Entity\EntityTypeBundleInfoInterface $entityTypeBundleInfo
  *    The entity type bundle info.
  */
 public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityManagerInterface $entity_manager, FormatterPluginManager $formatter_plugin_manager, FieldTypePluginManagerInterface $field_type_plugin_manager, LanguageManagerInterface $language_manager, RendererInterface $renderer, EntityTypeBundleInfoInterface $entityTypeBundleInfo)
 {
     parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_manager, $formatter_plugin_manager, $field_type_plugin_manager, $language_manager, $renderer);
     $this->entityTypeBundleInfo = $entityTypeBundleInfo;
 }