class SocialGroupContentListBuilder in Open Social 8
Same name and namespace in other branches
- 8.2 modules/social_features/social_group/src/Controller/SocialGroupContentListBuilder.php \Drupal\social_group\Controller\SocialGroupContentListBuilder
 - 8.3 modules/social_features/social_group/src/Controller/SocialGroupContentListBuilder.php \Drupal\social_group\Controller\SocialGroupContentListBuilder
 - 8.4 modules/social_features/social_group/src/Controller/SocialGroupContentListBuilder.php \Drupal\social_group\Controller\SocialGroupContentListBuilder
 
Provides a list controller for group content from GroupContentListBuilder.
Hierarchy
- class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTrait
- class \Drupal\Core\Entity\EntityListBuilder implements EntityHandlerInterface, EntityListBuilderInterface uses MessengerTrait, RedirectDestinationTrait
- class \Drupal\social_group\Controller\SocialGroupContentListBuilder
 
 
 - class \Drupal\Core\Entity\EntityListBuilder implements EntityHandlerInterface, EntityListBuilderInterface uses MessengerTrait, RedirectDestinationTrait
 
Expanded class hierarchy of SocialGroupContentListBuilder
File
- modules/
social_features/ social_group/ src/ Controller/ SocialGroupContentListBuilder.php, line 18  
Namespace
Drupal\social_group\ControllerView source
class SocialGroupContentListBuilder extends EntityListBuilder {
  /**
   * The group to show the content for.
   *
   * @var \Drupal\group\Entity\GroupInterface
   */
  protected $group;
  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Routing\RedirectDestinationInterface
   */
  protected $entityTypeManager;
  /**
   * The redirect destination.
   *
   * @var \Drupal\Core\Routing\RedirectDestinationInterface
   */
  protected $redirectDestination;
  /**
   * Constructs a new GroupContentListBuilder object.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   * @param \Drupal\Core\Routing\RedirectDestinationInterface $redirect_destination
   *   The redirect destination.
   * @param \Drupal\Core\Routing\RouteMatchInterface $route_match
   *   The route match.
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
   *   The entity type definition.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, RedirectDestinationInterface $redirect_destination, RouteMatchInterface $route_match, EntityTypeInterface $entity_type) {
    parent::__construct($entity_type, $entity_type_manager
      ->getStorage($entity_type
      ->id()));
    $this->entityTypeManager = $entity_type_manager;
    $this->redirectDestination = $redirect_destination;
    // There should always be a group on the route for group content lists.
    $this->group = $route_match
      ->getParameters()
      ->get('group');
  }
  /**
   * {@inheritdoc}
   */
  public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
    return new static($container
      ->get('entity_type.manager'), $container
      ->get('redirect.destination'), $container
      ->get('current_route_match'), $entity_type);
  }
  /**
   * {@inheritdoc}
   */
  protected function getEntityIds() {
    $query = $this
      ->getStorage()
      ->getQuery();
    $query
      ->sort($this->entityType
      ->getKey('id'));
    // Only show group content for the group on the route.
    $query
      ->condition('gid', $this->group
      ->id());
    $query
      ->condition('type', 'group_membership', 'CONTAINS');
    // Only add the pager if a limit is specified.
    if ($this->limit) {
      $query
        ->pager($this->limit);
    }
    return $query
      ->execute();
  }
  /**
   * {@inheritdoc}
   */
  public function buildHeader() {
    $header = [
      'member' => $this
        ->t('Member'),
      'organization' => $this
        ->t('Organization'),
      'group_role' => $this
        ->t('Role'),
    ];
    return $header + parent::buildHeader();
  }
  /**
   * {@inheritdoc}
   */
  public function buildRow(EntityInterface $entity) {
    /** @var \Drupal\group\Entity\GroupInterface $entity */
    // Alter Group Membership table rows.
    if ($entity
      ->getContentPlugin()
      ->getPluginId() == 'group_membership') {
      // Prepare group roles.
      $roles = [];
      foreach ($entity->group_roles
        ->referencedEntities() as $group_role) {
        $roles[] = $group_role
          ->label();
      }
      if (empty($roles)) {
        $roles[] = $this
          ->t('Member');
      }
      $roles = implode(', ', $roles);
      // Get user profile.
      $profile = _social_group_get_member_profile($entity);
      if (!empty($profile)) {
        // EntityListBuilder sets the table rows using the #rows property, so we
        // need to add the render array using the 'data' key.
        $row['member']['data'] = \Drupal::entityTypeManager()
          ->getViewBuilder('profile')
          ->view($profile, 'table');
        $row['organization']['data'] = $profile
          ->get('field_profile_organization')
          ->view([
          'label' => 'hidden',
        ]);
        $row['group_role'] = $roles;
      }
    }
    else {
      $row['member'] = $entity
        ->id();
      $row['organization']['data'] = $entity
        ->toLink()
        ->toRenderable();
    }
    if (isset($row)) {
      return $row + parent::buildRow($entity);
    }
  }
  /**
   * {@inheritdoc}
   */
  public function render() {
    $build = parent::render();
    $build['table']['#empty'] = $this
      ->t('There are no members yet.');
    return $build;
  }
  /**
   * {@inheritdoc}
   */
  protected function getDefaultOperations(EntityInterface $entity) {
    /** @var \Drupal\group\Entity\GroupContentInterface $entity */
    $operations = parent::getDefaultOperations($entity);
    // Improve the edit and delete operation labels.
    if (isset($operations['edit'])) {
      $operations['edit']['title'] = $this
        ->t('Edit');
    }
    if (isset($operations['delete'])) {
      $operations['delete']['title'] = $this
        ->t('Remove');
    }
    // Slap on redirect destinations for the administrative operations.
    $destination = $this->redirectDestination
      ->getAsArray();
    foreach ($operations as $key => $operation) {
      $operations[$key]['query'] = $destination;
    }
    // Add an operation to view the actual entity.
    if ($entity
      ->getEntity()
      ->access('view') && $entity
      ->getEntity()
      ->hasLinkTemplate('canonical')) {
      $operations['view'] = [
        'title' => $this
          ->t('View'),
        'weight' => 101,
        'url' => $entity
          ->getEntity()
          ->toUrl('canonical'),
      ];
    }
    return $operations;
  }
}Members
| 
            Name | 
                  Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 
            DependencySerializationTrait:: | 
                  protected | property | An array of entity type IDs keyed by the property name of their storages. | |
| 
            DependencySerializationTrait:: | 
                  protected | property | An array of service IDs keyed by property name used for serialization. | |
| 
            DependencySerializationTrait:: | 
                  public | function | 1 | |
| 
            DependencySerializationTrait:: | 
                  public | function | 2 | |
| 
            EntityHandlerBase:: | 
                  protected | property | The module handler to invoke hooks on. | 2 | 
| 
            EntityHandlerBase:: | 
                  protected | function | Gets the module handler. | 2 | 
| 
            EntityHandlerBase:: | 
                  public | function | Sets the module handler for this handler. | |
| 
            EntityListBuilder:: | 
                  protected | property | Information about the entity type. | |
| 
            EntityListBuilder:: | 
                  protected | property | The entity type ID. | |
| 
            EntityListBuilder:: | 
                  protected | property | The number of entities to list per page, or FALSE to list all entities. | 3 | 
| 
            EntityListBuilder:: | 
                  protected | property | The entity storage class. | 1 | 
| 
            EntityListBuilder:: | 
                  public | function | Builds a renderable list of operation links for the entity. | 2 | 
| 
            EntityListBuilder:: | 
                  protected | function | Ensures that a destination is present on the given URL. | |
| 
            EntityListBuilder:: | 
                  protected | function | Gets the label of an entity. | |
| 
            EntityListBuilder:: | 
                  public | function | 
            Provides an array of information to build a list of operation links. Overrides EntityListBuilderInterface:: | 
                  2 | 
| 
            EntityListBuilder:: | 
                  public | function | 
            Gets the entity storage. Overrides EntityListBuilderInterface:: | 
                  |
| 
            EntityListBuilder:: | 
                  protected | function | Gets the title of the page. | 1 | 
| 
            EntityListBuilder:: | 
                  public | function | 
            Loads entities of this type from storage for listing. Overrides EntityListBuilderInterface:: | 
                  4 | 
| 
            MessengerTrait:: | 
                  protected | property | The messenger. | 29 | 
| 
            MessengerTrait:: | 
                  public | function | Gets the messenger. | 29 | 
| 
            MessengerTrait:: | 
                  public | function | Sets the messenger. | |
| 
            RedirectDestinationTrait:: | 
                  protected | function | Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url. | |
| 
            RedirectDestinationTrait:: | 
                  protected | function | Returns the redirect destination service. | |
| 
            RedirectDestinationTrait:: | 
                  public | function | Sets the redirect destination service. | |
| 
            SocialGroupContentListBuilder:: | 
                  protected | property | The entity type manager. | |
| 
            SocialGroupContentListBuilder:: | 
                  protected | property | The group to show the content for. | |
| 
            SocialGroupContentListBuilder:: | 
                  protected | property | 
            The redirect destination. Overrides RedirectDestinationTrait:: | 
                  |
| 
            SocialGroupContentListBuilder:: | 
                  public | function | 
            Builds the header row for the entity listing. Overrides EntityListBuilder:: | 
                  |
| 
            SocialGroupContentListBuilder:: | 
                  public | function | 
            Builds a row for an entity in the entity listing. Overrides EntityListBuilder:: | 
                  |
| 
            SocialGroupContentListBuilder:: | 
                  public static | function | 
            Instantiates a new instance of this entity handler. Overrides EntityListBuilder:: | 
                  |
| 
            SocialGroupContentListBuilder:: | 
                  protected | function | 
            Gets this list's default operations. Overrides EntityListBuilder:: | 
                  |
| 
            SocialGroupContentListBuilder:: | 
                  protected | function | 
            Loads entity IDs using a pager sorted by the entity id. Overrides EntityListBuilder:: | 
                  |
| 
            SocialGroupContentListBuilder:: | 
                  public | function | 
            Builds the entity listing as renderable array for table.html.twig. Overrides EntityListBuilder:: | 
                  |
| 
            SocialGroupContentListBuilder:: | 
                  public | function | 
            Constructs a new GroupContentListBuilder object. Overrides EntityListBuilder:: | 
                  |
| 
            StringTranslationTrait:: | 
                  protected | property | The string translation service. | 1 | 
| 
            StringTranslationTrait:: | 
                  protected | function | Formats a string containing a count of items. | |
| 
            StringTranslationTrait:: | 
                  protected | function | Returns the number of plurals supported by a given language. | |
| 
            StringTranslationTrait:: | 
                  protected | function | Gets the string translation service. | |
| 
            StringTranslationTrait:: | 
                  public | function | Sets the string translation service to use. | 2 | 
| 
            StringTranslationTrait:: | 
                  protected | function | Translates a string to the current language or to a given language. |