You are here

UserOrganization.php in Open Social 8.9

File

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

namespace Drupal\social_user_export\Plugin\UserExportPlugin;

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

/**
 * Provides a 'UserOrganization' user export row.
 *
 * @UserExportPlugin(
 *  id = "user_organization",
 *  label = @Translation("Organization"),
 *  weight = -320,
 * )
 */
class UserOrganization extends UserExportPluginBase {

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

  /**
   * Returns the value.
   *
   * @param \Drupal\user\UserInterface $entity
   *   The User entity to get the value from.
   *
   * @return string
   *   The value.
   */
  public function getValue(UserInterface $entity) {
    return $this
      ->profileGetFieldValue('field_profile_organization', $this
      ->getProfile($entity));
  }

}

Classes

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