social_lms_integrator-1.0.0-beta4/modules/social_lms_integrator_export_applications/src/Plugin/SocialLMSIntegratorExportApplicationsPlugin/ApplicationFirstName.php
modules/social_lms_integrator_export_applications/src/Plugin/SocialLMSIntegratorExportApplicationsPlugin/ApplicationFirstName.php
<?php
namespace Drupal\social_lms_integrator_export_applications\Plugin\SocialLMSIntegratorExportApplicationsPlugin;
use Drupal\social_lms_integrator_export_applications\Plugin\SocialLMSIntegratorExportApplicationsPluginBase;
use Drupal\social_lms_integrator_application\ApplicationInterface;
/**
* Provides a 'UserFirstName' Social LMS Integrator export applications row.
*
* @SocialLMSIntegratorExportApplicationsPlugin(
* id = "application_first_name",
* label = @Translation("First name"),
* weight = -480,
* )
*/
class ApplicationFirstName extends SocialLMSIntegratorExportApplicationsPluginBase {
/**
* {@inheritdoc}
*/
public function getHeader() {
return $this->t('First name');
}
/**
* {@inheritdoc}
*/
public function getValue(ApplicationInterface $entity) {
// Get the user from the Application entity
$user = $this->getAccount($entity);
return $this->profileGetFieldValue('field_profile_first_name', $this->getProfile($user));
}
}