class UserRegistration in Open Social 8.9
Same name and namespace in other branches
- 8.3 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 8.4 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 8.5 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 8.6 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 8.7 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 8.8 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 10.3.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 10.0.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 10.1.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- 10.2.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserRegistration.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
Provides a 'UserRegistration' user export row.
Plugin annotation
@UserExportPlugin(
id = "user_registration",
label = @Translation("Registration date"),
weight = -410,
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\social_user_export\Plugin\UserExportPluginBase implements ContainerFactoryPluginInterface, UserExportPluginInterface uses StringTranslationTrait
- class \Drupal\social_user_export\Plugin\UserExportPlugin\UserRegistration
- class \Drupal\social_user_export\Plugin\UserExportPluginBase implements ContainerFactoryPluginInterface, UserExportPluginInterface uses StringTranslationTrait
Expanded class hierarchy of UserRegistration
1 file declares its use of UserRegistration
- EnrolmentUserRegistration.php in modules/
social_features/ social_event/ modules/ social_event_an_enroll_enrolments_export/ src/ Plugin/ UserExportPlugin/ EnrolmentUserRegistration.php
File
- modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserRegistration.php, line 17
Namespace
Drupal\social_user_export\Plugin\UserExportPluginView source
class UserRegistration extends UserExportPluginBase {
/**
* {@inheritdoc}
*/
public function getHeader() {
return $this
->t('Registration date');
}
/**
* {@inheritdoc}
*/
public function getValue(UserInterface $entity) {
return $this
->format($entity);
}
/**
* Formats a date, using a date type or a custom date format string.
*
* @param mixed $entity
* The entity object.
*
* @return string
* A translated date string in the requested format. Since the format may
* contain user input, this value should be escaped when output.
*/
public function format($entity) {
return $this->dateFormatter
->format($entity
->getCreatedTime(), 'short');
}
}
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:: |
3 |
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. | 1 |
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 static | function |
The create method. Overrides ContainerFactoryPluginInterface:: |
4 |
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:: |
|
UserExportPluginBase:: |
public | function |
UserExportPluginBase constructor. Overrides PluginBase:: |
4 |
UserRegistration:: |
public | function | Formats a date, using a date type or a custom date format string. | |
UserRegistration:: |
public | function |
Returns the header. Overrides UserExportPluginBase:: |
|
UserRegistration:: |
public | function |
Returns the value. Overrides UserExportPluginBase:: |
1 |