public function Topic::__construct in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 8.2 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 8.3 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 8.4 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 8.5 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 8.6 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 8.7 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 8.8 modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 10.3.x modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 10.0.x modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 10.1.x modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
- 10.2.x modules/custom/social_demo/src/Plugin/DemoContent/Topic.php \Drupal\social_demo\Plugin\DemoContent\Topic::__construct()
Topic constructor.
Overrides DemoNode::__construct
File
- modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Topic.php, line 42
Class
- Topic
- Topic Plugin for demo content.
Namespace
Drupal\social_demo\Plugin\DemoContentCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, UserStorageInterface $user_storage, EntityStorageInterface $group_storage, FileStorageInterface $file_storage, TermStorageInterface $term_storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition, $parser, $user_storage, $group_storage);
$this->fileStorage = $file_storage;
$this->termStorage = $term_storage;
}