You are here

public static function PostProfileBlock::create in Open Social 8.9

Same name and namespace in other branches
  1. 8.8 modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::create()
  2. 10.3.x modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::create()
  3. 10.0.x modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::create()
  4. 10.1.x modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::create()
  5. 10.2.x modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php \Drupal\social_post\Plugin\Block\PostProfileBlock::create()

Creates an instance of the plugin.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The container to pull out services used in the plugin.

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

Return value

static Returns an instance of this plugin.

Overrides PostBlock::create

File

modules/social_features/social_post/src/Plugin/Block/PostProfileBlock.php, line 79

Class

PostProfileBlock
Provides a 'PostProfileBlock' block.

Namespace

Drupal\social_post\Plugin\Block

Code

public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
  return new static($configuration, $plugin_id, $plugin_definition, $container
    ->get('entity_type.manager'), $container
    ->get('current_user'), $container
    ->get('form_builder'), $container
    ->get('module_handler'), $container
    ->get('current_route_match')
    ->getParameter('user'));
}