You are here

public static function ViewEditForm::create in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views_ui/src/ViewEditForm.php \Drupal\views_ui\ViewEditForm::create()
  2. 9 core/modules/views_ui/src/ViewEditForm.php \Drupal\views_ui\ViewEditForm::create()

File

core/modules/views_ui/src/ViewEditForm.php, line 89

Class

ViewEditForm
Form controller for the Views edit form.

Namespace

Drupal\views_ui

Code

public static function create(ContainerInterface $container) {
  return new static($container
    ->get('tempstore.shared'), $container
    ->get('request_stack'), $container
    ->get('date.formatter'), $container
    ->get('element_info'), $container
    ->get('theme.manager'));
}