public static function DemoNode::create in Open Social 8.8
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 8 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 8.2 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 8.3 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 8.4 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 8.5 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 8.6 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 8.7 modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 10.3.x modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 10.0.x modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 10.1.x modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::create()
- 10.2.x modules/custom/social_demo/src/DemoNode.php \Drupal\social_demo\DemoNode::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 ContainerFactoryPluginInterface::create
4 methods override DemoNode::create()
- Book::create in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Book.php - Creates an instance of the plugin.
- Event::create in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Event.php - Creates an instance of the plugin.
- Page::create in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Page.php - Creates an instance of the plugin.
- Topic::create in modules/
custom/ social_demo/ src/ Plugin/ DemoContent/ Topic.php - Creates an instance of the plugin.
File
- modules/
custom/ social_demo/ src/ DemoNode.php, line 49
Class
- DemoNode
- Class DemoNode.
Namespace
Drupal\social_demoCode
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
return new static($configuration, $plugin_id, $plugin_definition, $container
->get('social_demo.yaml_parser'), $container
->get('entity.manager')
->getStorage('user'), $container
->get('entity.manager')
->getStorage('group'));
}