You are here

public function PostGroupBlock::__construct in Open Social 8.2

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  2. 8 modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  3. 8.3 modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  4. 8.4 modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  5. 8.5 modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  6. 8.6 modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  7. 8.7 modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  8. 8.8 modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  9. 10.3.x modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  10. 10.0.x modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  11. 10.1.x modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()
  12. 10.2.x modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php \Drupal\social_post\Plugin\Block\PostGroupBlock::__construct()

Overrides PostBlock::__construct

1 call to PostGroupBlock::__construct()
PostPhotoGroupBlock::__construct in modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoGroupBlock.php
1 method overrides PostGroupBlock::__construct()
PostPhotoGroupBlock::__construct in modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoGroupBlock.php

File

modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php, line 22

Class

PostGroupBlock
Provides a 'PostGroupBlock' block.

Namespace

Drupal\social_post\Plugin\Block

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, $entityTypeManager, $currentUser, $formBuilder, ModuleHandler $moduleHandler) {
  parent::__construct($configuration, $plugin_id, $plugin_definition, $entityTypeManager, $currentUser, $formBuilder, $moduleHandler);
  $this->entityType = 'post';
  $this->bundle = 'post';
  $this->formDisplay = 'group';
}