UserGroupMemberships.php in Open Social 10.0.x
Same filename and directory in other branches
- 8.9 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
- 8.4 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
- 8.5 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
- 8.6 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
- 8.7 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
- 8.8 modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
- 10.3.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
- 10.1.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
- 10.2.x modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.php
File
modules/social_features/social_user_export/src/Plugin/UserExportPlugin/UserGroupMemberships.phpView source
<?php
namespace Drupal\social_user_export\Plugin\UserExportPlugin;
use Drupal\Core\Database\Connection;
use Drupal\Core\Datetime\DateFormatterInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\group\Entity\Group;
use Drupal\social_group\SocialGroupHelperService;
use Drupal\social_user_export\Plugin\UserExportPluginBase;
use Drupal\user\UserInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Provides a 'UserGroupMemberships' user export row.
*
* @UserExportPlugin(
* id = "user_group_memberships",
* label = @Translation("Group memberships (specified)"),
* weight = -198,
* )
*/
class UserGroupMemberships extends UserExportPluginBase {
/**
* The group helper service.
*
* @var \Drupal\social_group\SocialGroupHelperService
*/
public $groupHelper;
/**
* UserExportPluginBase constructor.
*
* @param array $configuration
* A configuration array containing information about the plugin instance.
* @param string $plugin_id
* The plugin_id for the plugin instance.
* @param mixed $plugin_definition
* The plugin implementation definition.
* @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
* The entity type manager.
* @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
* The date formatter.
* @param \Drupal\Core\Database\Connection $database
* The database connection.
* @param \Drupal\social_group\SocialGroupHelperService $group_helper
* The group helper service.
*/
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, DateFormatterInterface $date_formatter, Connection $database, SocialGroupHelperService $group_helper) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $entity_type_manager, $date_formatter, $database);
$this->groupHelper = $group_helper;
}
/**
* The create method.
*
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
* Container interface.
* @param array $configuration
* An array of configuration.
* @param string $plugin_id
* The plugin id.
* @param mixed $plugin_definition
* The plugin definition.
*
* @return \Drupal\Core\Plugin\ContainerFactoryPluginInterface|\Drupal\social_user_export\Plugin\UserExportPluginBase
* Returns the UserExportPluginBase.
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('entity_type.manager'), $container
->get('date.formatter'), $container
->get('database'), $container
->get('social_group.helper_service'));
}
/**
* {@inheritdoc}
*/
public function getHeader() {
return $this
->t('Group memberships (specified)');
}
/**
* {@inheritdoc}
*/
public function getValue(UserInterface $entity) {
$group_memberships = Group::loadMultiple($this->groupHelper
->getAllGroupsForUser($entity
->id()));
$groups = [];
foreach ($group_memberships as $group) {
$groups[] = "{$group->label()} ({$group->id()})";
}
return implode(', ', $groups);
}
}
Classes
Name | Description |
---|---|
UserGroupMemberships | Provides a 'UserGroupMemberships' user export row. |