You are here

public static function SocialTopicController::create in Open Social 8.3

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  2. 8 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  3. 8.2 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  4. 8.4 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  5. 8.5 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  6. 8.6 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  7. 8.7 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  8. 8.8 modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  9. 10.3.x modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  10. 10.0.x modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  11. 10.1.x modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()
  12. 10.2.x modules/social_features/social_topic/src/Controller/SocialTopicController.php \Drupal\social_topic\Controller\SocialTopicController::create()

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

Overrides ControllerBase::create

1 call to SocialTopicController::create()
social_topic_block_access in modules/social_features/social_topic/social_topic.module
Custom permission check, to see if people have access to users' topics.

File

modules/social_features/social_topic/src/Controller/SocialTopicController.php, line 59

Class

SocialTopicController
Returns responses for Social Topic routes.

Namespace

Drupal\social_topic\Controller

Code

public static function create(ContainerInterface $container) {
  return new static($container
    ->get('request_stack'), $container
    ->get('entity_type.manager'), $container
    ->get('module_handler'));
}