public function ViewEditForm::__construct in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views_ui/src/ViewEditForm.php \Drupal\views_ui\ViewEditForm::__construct()
 - 9 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.
\Drupal\Core\Theme\ThemeManagerInterface $theme_manager: The theme manager.
File
- core/
modules/ views_ui/ src/ ViewEditForm.php, line 78  
Class
- ViewEditForm
 - Form controller for the Views edit form.
 
Namespace
Drupal\views_uiCode
public function __construct(SharedTempStoreFactory $temp_store_factory, RequestStack $requestStack, DateFormatterInterface $date_formatter, ElementInfoManagerInterface $element_info, ThemeManagerInterface $theme_manager) {
  $this->tempStore = $temp_store_factory
    ->get('views');
  $this->requestStack = $requestStack;
  $this->dateFormatter = $date_formatter;
  $this->elementInfo = $element_info;
  $this->themeManager = $theme_manager;
}