You are here

public function OrderForm::__construct in Frequently Asked Questions 8

Parameters

\Drupal\Core\Entity\EntityTypeManagerInterface $entityTypeManager:

\Drupal\Core\Language\LanguageManagerInterface $languageManager:

\Drupal\Core\Database\Connection $database:

Overrides ConfigFormBase::__construct

File

src/Form/OrderForm.php, line 30

Class

OrderForm
Form for reordering the FAQ-s.

Namespace

Drupal\faq\Form

Code

public function __construct(EntityTypeManagerInterface $entityTypeManager, LanguageManagerInterface $languageManager, Connection $database) {
  $this->entityTypeManager = $entityTypeManager;
  $this->languageManager = $languageManager;
  $this->database = $database;
}