You are here

public static function LingotekConfigFormBase::create in Lingotek Translation 3.4.x

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

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

Overrides ConfigFormBase::create

5 methods override LingotekConfigFormBase::create()
LingotekContentTranslationForm::create in src/Form/LingotekContentTranslationForm.php
Instantiates a new instance of this class.
LingotekSettingsTabAccountForm::create in src/Form/LingotekSettingsTabAccountForm.php
Instantiates a new instance of this class.
LingotekSettingsTabConfigurationForm::create in src/Form/LingotekSettingsTabConfigurationForm.php
Instantiates a new instance of this class.
LingotekSettingsTabIntegrationsForm::create in src/Form/LingotekSettingsTabIntegrationsForm.php
Instantiates a new instance of this class.
LingotekSettingsTabUtilitiesForm::create in src/Form/LingotekSettingsTabUtilitiesForm.php
Instantiates a new instance of this class.

File

src/Form/LingotekConfigFormBase.php, line 58

Class

LingotekConfigFormBase
Configure Lingotek

Namespace

Drupal\lingotek\Form

Code

public static function create(ContainerInterface $container) {
  return new static($container
    ->get('lingotek'), $container
    ->get('config.factory'), $container
    ->get('url_generator'), $container
    ->get('link_generator'));
}