public function PostBlock::__construct in Open Social 8.2
Same name and namespace in other branches
- 8.9 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 8 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 8.3 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 8.4 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 8.5 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 8.6 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 8.7 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 8.8 modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 10.3.x modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 10.0.x modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 10.1.x modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
- 10.2.x modules/social_features/social_post/src/Plugin/Block/PostBlock.php \Drupal\social_post\Plugin\Block\PostBlock::__construct()
Overrides BlockPluginTrait::__construct
3 calls to PostBlock::__construct()
- PostGroupBlock::__construct in modules/
social_features/ social_post/ src/ Plugin/ Block/ PostGroupBlock.php - PostPhotoBlock::__construct in modules/
social_features/ social_post/ modules/ social_post_photo/ src/ Plugin/ Block/ PostPhotoBlock.php - PostProfileBlock::__construct in modules/
social_features/ social_post/ src/ Plugin/ Block/ PostProfileBlock.php
3 methods override PostBlock::__construct()
- PostGroupBlock::__construct in modules/
social_features/ social_post/ src/ Plugin/ Block/ PostGroupBlock.php - PostPhotoBlock::__construct in modules/
social_features/ social_post/ modules/ social_post_photo/ src/ Plugin/ Block/ PostPhotoBlock.php - PostProfileBlock::__construct in modules/
social_features/ social_post/ src/ Plugin/ Block/ PostProfileBlock.php
File
- modules/
social_features/ social_post/ src/ Plugin/ Block/ PostBlock.php, line 61
Class
- PostBlock
- Provides a 'PostBlock' block.
Namespace
Drupal\social_post\Plugin\BlockCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entityTypeManager, AccountProxy $currentUser, FormBuilderInterface $formBuilder, ModuleHandler $moduleHandler) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->entityType = 'post';
$this->bundle = 'post';
$this->formDisplay = 'default';
$this->entityTypeManager = $entityTypeManager;
$this->currentUser = $currentUser;
$this->formBuilder = $formBuilder;
$this->moduleHandler = $moduleHandler;
if ($moduleHandler
->moduleExists('social_post_photo')) {
$this->bundle = 'photo';
}
}