You are here

public static function DraggableViewsField::create in DraggableViews 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/views/field/DraggableViewsField.php \Drupal\draggableviews\Plugin\views\field\DraggableViewsField::create()

Creates an instance of the plugin.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Return value

static Returns an instance of this plugin.

Overrides BulkForm::create

File

src/Plugin/views/field/DraggableViewsField.php, line 62

Class

DraggableViewsField
Defines a draggableviews form element.

Namespace

Drupal\draggableviews\Plugin\views\field

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {

  /** @var static $datasource */
  $bulk_form = parent::create($container, $configuration, $plugin_id, $plugin_definition);
  $bulk_form
    ->setCurrentUser($container
    ->get('current_user'));
  return $bulk_form;
}