You are here

class UserAddressLine1 in Open Social 8.9

Same name and namespace in other branches
  1. 8.3 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  2. 8.4 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  3. 8.5 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  4. 8.6 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  5. 8.7 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  6. 8.8 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  7. 10.3.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  8. 10.0.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  9. 10.1.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1
  10. 10.2.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php \Drupal\social_user_export\Plugin\UserExportPlugin\UserAddressLine1

Provides a 'UserAddressLine1' user export row.

Plugin annotation


@UserExportPlugin(
 id = "user_address_line1",
 label = @Translation("Address line 1"),
 weight = -350,
)

Hierarchy

Expanded class hierarchy of UserAddressLine1

File

modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserAddressLine1.php, line 17

Namespace

Drupal\social_user_export\Plugin\UserExportPlugin
View source
class UserAddressLine1 extends UserExportPluginBase {

  /**
   * {@inheritdoc}
   */
  public function getHeader() {
    return $this
      ->t('Address line 1');
  }

  /**
   * {@inheritdoc}
   */
  public function getValue(UserInterface $entity) {
    return $this
      ->profileGetAddressFieldValue('field_profile_address', 'address_line1', $this
      ->getProfile($entity));
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
UserAddressLine1::getHeader public function Returns the header. Overrides UserExportPluginBase::getHeader
UserAddressLine1::getValue public function Returns the value. Overrides UserExportPluginBase::getValue
UserExportPluginBase::$database public property The database.
UserExportPluginBase::$dateFormatter public property The date formatter.
UserExportPluginBase::$entityTypeManager public property The entity type manager.
UserExportPluginBase::create public static function The create method. Overrides ContainerFactoryPluginInterface::create 4
UserExportPluginBase::getProfile public function Get the Profile entity. Overrides UserExportPluginInterface::getProfile
UserExportPluginBase::profileGetAddressFieldValue public function Returns the value for the address field and element within address. Overrides UserExportPluginInterface::profileGetAddressFieldValue
UserExportPluginBase::profileGetFieldValue public function Returns the value of a field for a given profile. Overrides UserExportPluginInterface::profileGetFieldValue
UserExportPluginBase::profileGetTaxonomyFieldValue public function Returns the values of a taxonomy reference field. Overrides UserExportPluginInterface::profileGetTaxonomyFieldValue
UserExportPluginBase::__construct public function UserExportPluginBase constructor. Overrides PluginBase::__construct 4