function TranslationStatusForm::create

Same name and namespace in other branches
  1. 10 core/modules/locale/src/Form/TranslationStatusForm.php \Drupal\locale\Form\TranslationStatusForm::create()
  2. 11.x core/modules/locale/src/Form/TranslationStatusForm.php \Drupal\locale\Form\TranslationStatusForm::create()
  3. 9 core/modules/locale/src/Form/TranslationStatusForm.php \Drupal\locale\Form\TranslationStatusForm::create()
  4. 8.9.x core/modules/locale/src/Form/TranslationStatusForm.php \Drupal\locale\Form\TranslationStatusForm::create()

Instantiates a new instance of the implementing class using autowiring.

Parameters

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

Return value

static

Overrides AutowireTrait::create

File

core/modules/locale/src/Form/TranslationStatusForm.php, line 25

Class

TranslationStatusForm
Provides a translation status form.

Namespace

Drupal\locale\Form

Code

public static function create(ContainerInterface $container) {
  return new static($container->get('module_handler'), $container->get('state'), $container->get('datetime.time'), $container->get(LocaleFetch::class));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.