You are here

public function ViewEditForm::__construct in Drupal 8

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

Constructs a new ViewEditForm object.

Parameters

\Drupal\Core\TempStore\SharedTempStoreFactory $temp_store_factory: The factory for the temp store object.

\Symfony\Component\HttpFoundation\RequestStack $requestStack: The request stack object.

\Drupal\Core\Datetime\DateFormatterInterface $date_formatter: The date Formatter service.

\Drupal\Core\Render\ElementInfoManagerInterface $element_info: The element info manager.

File

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

Class

ViewEditForm
Form controller for the Views edit form.

Namespace

Drupal\views_ui

Code

public function __construct(SharedTempStoreFactory $temp_store_factory, RequestStack $requestStack, DateFormatterInterface $date_formatter, ElementInfoManagerInterface $element_info) {
  $this->tempStore = $temp_store_factory
    ->get('views');
  $this->requestStack = $requestStack;
  $this->dateFormatter = $date_formatter;
  $this->elementInfo = $element_info;
}