You are here

UserEmail.php in Open Social 8.5

File

modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserEmail.php
View source
<?php

namespace Drupal\social_user_export\Plugin\UserExportPlugin;

use Drupal\social_user_export\Plugin\UserExportPluginBase;
use Drupal\user\UserInterface;

/**
 * Provides a 'UserEmail' user export row.
 *
 * @UserExportPlugin(
 *  id = "user_email",
 *  label = @Translation("Email"),
 *  weight = -440,
 * )
 */
class UserEmail extends UserExportPluginBase {

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

  /**
   * {@inheritdoc}
   */
  public function getValue(UserInterface $entity) {
    return $entity
      ->getEmail();
  }

}

Classes

Namesort descending Description
UserEmail Provides a 'UserEmail' user export row.