public function LingotekProfileFormBase::__construct in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 8 src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 8.2 src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 4.0.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 3.0.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 3.1.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 3.2.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 3.3.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 3.5.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 3.6.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 3.7.x src/Form/LingotekProfileFormBase.php \Drupal\lingotek\Form\LingotekProfileFormBase::__construct()
- 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\FormCode
public function __construct(LingotekConfigurationServiceInterface $lingotek_configuration, LingotekFilterManagerInterface $lingotek_filter_manager) {
$this->lingotekConfiguration = $lingotek_configuration;
$this->lingotekFilterManager = $lingotek_filter_manager;
}