public function PostProfileBlock::__construct in Open Social 8.3
Same name and namespace in other branches
- 8.9 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 8 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 8.2 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 8.4 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 8.5 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 8.6 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 8.7 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 8.8 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 10.3.x modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 10.0.x modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 10.1.x modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
- 10.2.x modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::__construct()
Overrides PostBlock::__construct
1 call to PostProfileBlock::__construct()
- PostPhotoProfileBlock::__construct in modules/
social_features/ social_post/ modules/ social_post_photo/ src/ Plugin/ Block/ PostPhotoProfileBlock.php
1 method overrides PostProfileBlock::__construct()
- PostPhotoProfileBlock::__construct in modules/
social_features/ social_post/ modules/ social_post_photo/ src/ Plugin/ Block/ PostPhotoProfileBlock.php
File
- modules/
social_features/ social_post/ src/ Plugin/ Block/ PostProfileBlock.php, line 20
Class
- PostProfileBlock
- Provides a 'PostProfileBlock' block.
Namespace
Drupal\social_post\Plugin\BlockCode
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 = 'profile';
$this->currentUser = $currentUser;
// Check if current user is the same as the profile.
// In this case use the default form display.
$uid = $this->currentUser
->id();
$account_profile = \Drupal::routeMatch()
->getParameter('user');
if (isset($account_profile) && ($account_profile === $uid || is_object($account_profile) && $uid === $account_profile
->id())) {
$this->formDisplay = 'default';
}
}