class UserLanguage in Open Social 10.0.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
- 8.7 modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage
- 8.8 modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage
- 10.3.x modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage
- 10.1.x modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage
- 10.2.x modules/custom/social_language/src/Plugin/UserExportPlugin/UserLanguage.php \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage
Provides a 'UserLanguage' user export row.
Plugin annotation
@UserExportPlugin(
id = "user_language",
label = @Translation("Language"),
weight = -340,
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\social_user_export\Plugin\UserExportPluginBase implements ContainerFactoryPluginInterface, UserExportPluginInterface uses StringTranslationTrait
- class \Drupal\social_language\Plugin\UserExportPlugin\UserLanguage
- class \Drupal\social_user_export\Plugin\UserExportPluginBase implements ContainerFactoryPluginInterface, UserExportPluginInterface uses StringTranslationTrait
Expanded class hierarchy of UserLanguage
File
- modules/
custom/ social_language/ src/ Plugin/ UserExportPlugin/ UserLanguage.php, line 22
Namespace
Drupal\social_language\Plugin\UserExportPluginView source
class UserLanguage extends UserExportPluginBase {
/**
* The language manager service.
*
* @var \Drupal\Core\Language\LanguageManagerInterface
*/
public $languageManager;
/**
* UserExportPluginBase constructor.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
* The date formatter.
* @param \Drupal\Core\Database\Connection $database
* The database connection.
* @param \Drupal\Core\Language\LanguageManagerInterface $language_manager
* The language manager service.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, DateFormatterInterface $date_formatter, Connection $database, LanguageManagerInterface $language_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $date_formatter, $database);
$this->languageManager = $language_manager;
}
/**
* The create method.
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* Container interface.
* @param array $configuration
* An array of configuration.
* @param string $plugin_id
* The plugin id.
* @param mixed $plugin_definition
* The plugin definition.
*
* @return \Drupal\Core\Plugin\ContainerFactoryPluginInterface|\Drupal\social_user_export\Plugin\UserExportPluginBase
* Returns the UserExportPluginBase.
*/
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'));
}
/**
* {@inheritdoc}
*/
public function getHeader() {
return $this
->t('Language');
}
/**
* {@inheritdoc}
*/
public function getValue(UserInterface $entity) : string {
return $this->languageManager
->getLanguage($entity
->getPreferredLangcode())
->getName();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
2 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 4 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
UserExportPluginBase:: |
public | property | The database. | |
UserExportPluginBase:: |
public | property | The date formatter. | |
UserExportPluginBase:: |
public | property | The entity type manager. | |
UserExportPluginBase:: |
public | function |
Get the Profile entity. Overrides UserExportPluginInterface:: |
|
UserExportPluginBase:: |
public | function |
Returns the value for the address field and element within address. Overrides UserExportPluginInterface:: |
|
UserExportPluginBase:: |
public | function |
Returns the value of a field for a given profile. Overrides UserExportPluginInterface:: |
|
UserExportPluginBase:: |
public | function |
Returns the values of a taxonomy reference field. Overrides UserExportPluginInterface:: |
|
UserLanguage:: |
public | property | The language manager service. | |
UserLanguage:: |
public static | function |
The create method. Overrides UserExportPluginBase:: |
|
UserLanguage:: |
public | function |
Returns the header. Overrides UserExportPluginBase:: |
|
UserLanguage:: |
public | function |
Returns the value. Overrides UserExportPluginBase:: |
|
UserLanguage:: |
public | function |
UserExportPluginBase constructor. Overrides UserExportPluginBase:: |