public static function ParagraphsBehaviorBase::create

6 methods override ParagraphsBehaviorBase::create()
ParagraphsAnchorPlugin::create in paragraphs_collection/modules/paragraphs_collection_demo/src/Plugin/paragraphs/Behavior/ParagraphsAnchorPlugin.php
ParagraphsGridLayoutPlugin::create in paragraphs_collection/src/Plugin/paragraphs/Behavior/ParagraphsGridLayoutPlugin.php
ParagraphsLanguagePlugin::create in paragraphs_collection/src/Plugin/paragraphs/Behavior/ParagraphsLanguagePlugin.php
ParagraphsLockablePlugin::create in paragraphs_collection/src/Plugin/paragraphs/Behavior/ParagraphsLockablePlugin.php
ParagraphsSliderPlugin::create in paragraphs_collection/modules/paragraphs_collection_demo/src/Plugin/paragraphs/Behavior/ParagraphsSliderPlugin.php

... See full list

File

paragraphs/src/ParagraphsBehaviorBase.php, line 45

Class

ParagraphsBehaviorBase

Namespace

Drupal\paragraphs

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('entity_field.manager'));
}