public function DemoNode::__construct in Open Social 10.2.x
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 8 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 8.2 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 8.3 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 8.4 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 8.5 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 8.6 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 8.7 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 8.8 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 10.3.x modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 10.0.x modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
- 10.1.x modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::__construct()
Constructs a \Drupal\Component\Plugin\PluginBase object.
Parameters
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.
Overrides PluginBase::__construct
4 calls to DemoNode::__construct()
- Book::__construct in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Book.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Event::__construct in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Event.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Page::__construct in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Page.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Topic::__construct in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Topic.php - Topic constructor.
4 methods override DemoNode::__construct()
- Book::__construct in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Book.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Event::__construct in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Event.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Page::__construct in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Page.php - Constructs a \Drupal\Component\Plugin\PluginBase object.
- Topic::__construct in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Topic.php - Topic constructor.
File
- modules/
custom/ social_demo/ src/ DemoNode.php, line 38
Class
- DemoNode
- Class DemoNode.
Namespace
Drupal\social_demoCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, UserStorageInterface $user_storage, EntityStorageInterface $group_storage) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->parser = $parser;
$this->groupStorage = $group_storage;
$this->userStorage = $user_storage;
}