public function DemoFile::__construct in Open Social 10.3.x
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 8 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 8.2 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 8.3 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 8.4 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 8.5 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 8.6 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 8.7 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 8.8 modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 10.0.x modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 10.1.x modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
- 10.2.x modules/custom/social_demo/src/DemoFile.php \Drupal\social_demo\DemoFile::__construct()
DemoFile constructor.
Overrides PluginBase::__construct
File
- modules/
custom/ social_demo/ src/ DemoFile.php, line 37
Class
- DemoFile
- Class DemoFile.
Namespace
Drupal\social_demoCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, ImageWidgetCropManager $image_widget_crop_manager, EntityTypeManagerInterface $entity_type_manager) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->parser = $parser;
$this->imageWidgetCropManager = $image_widget_crop_manager;
$this->entityTypeManager = $entity_type_manager;
}