You are here

public function LingotekProfileFormBase::__construct in Lingotek Translation 3.4.x

Same name and namespace in other branches
  1. 8 src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  2. 8.2 src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  3. 4.0.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  4. 3.0.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  5. 3.1.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  6. 3.2.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  7. 3.3.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  8. 3.5.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  9. 3.6.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  10. 3.7.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
  11. 3.8.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()

Constructs a LingotekProfileFormBase object.

Parameters

\Drupal\lingotek\LingotekConfigurationServiceInterface $lingotek_configuration: The Lingotek configuration service.

\Drupal\lingotek\LingotekFilterManagerInterface $lingotek_filter_manager: The Lingotek Filter manager.

File

src/Form/LingotekProfileFormBase.php, line 41

Class

LingotekProfileFormBase
Provides a common base class for Profile forms.

Namespace

Drupal\lingotek\Form

Code

public function __construct(LingotekConfigurationServiceInterface $lingotek_configuration, LingotekFilterManagerInterface $lingotek_filter_manager) {
  $this->lingotekConfiguration = $lingotek_configuration;
  $this->lingotekFilterManager = $lingotek_filter_manager;
}