public function UserExportPluginBase::getValue in Open Social 8.6
Same name and namespace in other branches
- 8.9 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 8.3 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 8.4 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 8.5 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 8.7 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 8.8 modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 10.3.x modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 10.0.x modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 10.1.x modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
- 10.2.x modules/social_features/social_user_export/src/Plugin/UserExportPluginBase.php \Drupal\social_user_export\Plugin\UserExportPluginBase::getValue()
Returns the value.
Parameters
\Drupal\user\UserInterface $entity: The User entity to get the value from.
Return value
string The value.
Overrides UserExportPluginInterface::getValue
37 methods override UserExportPluginBase::getValue()
- OrganizationTag::getValue in modules/
social_features/ social_profile/ modules/ social_profile_organization_tag/ src/ Plugin/ UserExportPlugin/ OrganizationTag.php - Returns the value.
- UserAccountName::getValue in modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserAccountName.php - Returns the value.
- UserAddressAdministrative::getValue in modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserAddressAdministrative.php - Returns the value.
- UserAddressCountryCode::getValue in modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserAddressCountryCode.php - Returns the value.
- UserAddressLine1::getValue in modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPlugin/ UserAddressLine1.php - Returns the value.
File
- modules/
social_features/ social_user_export/ src/ Plugin/ UserExportPluginBase.php, line 113
Class
- UserExportPluginBase
- Base class for User export plugin plugins.
Namespace
Drupal\social_user_export\PluginCode
public function getValue(UserInterface $entity) {
return '';
}