You are here

public function PostBlock::__construct in Open Social 8.8

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

PostBlock constructor.

Parameters

array $configuration: The plugin configuration, i.e. an array with configuration values keyed by configuration option name. The special key 'context' may be used to initialize the defined contexts by setting it to an array of context values keyed by context names.

string $plugin_id: The plugin_id for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

\Drupal\Core\Session\AccountProxyInterface $current_user: The current user.

\Drupal\Core\Form\FormBuilderInterface $form_builder: The form builder.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler.

Overrides BlockPluginTrait::__construct

3 calls to PostBlock::__construct()
PostGroupBlock::__construct in modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php
PostBlock constructor.
PostPhotoBlock::__construct in modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoBlock.php
PostBlock constructor.
PostProfileBlock::__construct in modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php
PostProfileBlock constructor.
3 methods override PostBlock::__construct()
PostGroupBlock::__construct in modules/social_features/social_post/src/Plugin/Block/PostGroupBlock.php
PostBlock constructor.
PostPhotoBlock::__construct in modules/social_features/social_post/modules/social_post_photo/src/Plugin/Block/PostPhotoBlock.php
PostBlock constructor.
PostProfileBlock::__construct in modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php
PostProfileBlock constructor.

File

modules/social_features/social_post/src/Plugin/Block/PostBlock.php, line 96

Class

PostBlock
Provides a 'PostBlock' block.

Namespace

Drupal\social_post\Plugin\Block

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager, AccountProxyInterface $current_user, FormBuilderInterface $form_builder, ModuleHandlerInterface $module_handler) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityType = 'post';
  $this->bundle = 'post';
  $this->formDisplay = 'default';
  $this->entityTypeManager = $entity_type_manager;
  $this->currentUser = $current_user;
  $this->formBuilder = $form_builder;
  $this->moduleHandler = $module_handler;
  if ($module_handler
    ->moduleExists('social_post_photo')) {
    $this->bundle = 'photo';
  }
}