public static function UserLanguage::create in Open Social 10.2.x
Same name and namespace in other branches
- 8.9 modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage::create()
- 8.7 modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage::create()
- 8.8 modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage::create()
- 10.3.x modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage::create()
- 10.0.x modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage::create()
- 10.1.x modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage::create()
The create method.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: Container interface.
array $configuration: An array of configuration.
string $plugin_id: The plugin id.
mixed $plugin_definition: The plugin definition.
Return value
\Drupal\Core\Plugin\ContainerFactoryPluginInterface|\Drupal\social_user_export\Plugin\UserExportPluginBase Returns the UserExportPluginBase.
Overrides UserExportPluginBase::create
File
- modules/
custom/ social_language/ src/ Plugin/ UserExportPlugin/ UserLanguage.php, line 70
Class
- UserLanguage
- Provides a 'UserLanguage' user export row.
Namespace
Drupal\social_language\Plugin\UserExportPluginCode
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('date.formatter'), $container
->get('database'), $container
->get('language_manager'));
}