You are here

public function AddViewsCustomTable::__construct in Views Custom Table 8

Same name and namespace in other branches
  1. 9.0.x src/Form/AddViewsCustomTable.php \Drupal\view_custom_table\Form\AddViewsCustomTable::__construct()

Class constructor.

File

src/Form/AddViewsCustomTable.php, line 66

Class

AddViewsCustomTable
Add views custom table form.

Namespace

Drupal\view_custom_table\Form

Code

public function __construct(AccountProxy $account, EntityTypeManager $entityManager, ImmutableConfig $config, Config $configEditable) {
  $this->step = 1;
  $this->PreviousStepData = [];
  $this->account = $account;
  $this->entityManager = $entityManager;
  $this->config = $config;
  $this->configEditable = $configEditable;
}