You are here

public function EntityLegalDocumentForm::__construct in Entity Legal 3.0.x

Same name and namespace in other branches
  1. 8.2 src/Form/EntityLegalDocumentForm.php \Drupal\entity_legal\Form\EntityLegalDocumentForm::__construct()
  2. 8 src/Form/EntityLegalDocumentForm.php \Drupal\entity_legal\Form\EntityLegalDocumentForm::__construct()
  3. 4.0.x src/Form/EntityLegalDocumentForm.php \Drupal\entity_legal\Form\EntityLegalDocumentForm::__construct()

File

src/Form/EntityLegalDocumentForm.php, line 67

Class

EntityLegalDocumentForm
Base form for contact form edit forms.

Namespace

Drupal\entity_legal\Form

Code

public function __construct(ContentEntityStorageInterface $alias_storage, PluginManagerInterface $plugin_manager, AccountProxy $currentUser, ModuleHandler $moduleHandler) {
  $this->aliasStorage = $alias_storage;
  $this->pluginManager = $plugin_manager;
  $this->currentUser = $currentUser;
  $this->moduleHandler = $moduleHandler;
}