public function DemoSystem::__construct in Open Social 10.2.x
Same name and namespace in other branches
- 8.9 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 8 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 8.2 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 8.3 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 8.4 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 8.5 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 8.6 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 8.7 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 8.8 modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 10.3.x modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 10.0.x modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
- 10.1.x modules/custom/social_demo/src/DemoSystem.php \Drupal\social_demo\DemoSystem::__construct()
DemoComment constructor.
Overrides PluginBase::__construct
File
- modules/
custom/ social_demo/ src/ DemoSystem.php, line 54
Class
- DemoSystem
- Class DemoSystem.
Namespace
Drupal\social_demoCode
public function __construct(array $configuration, $plugin_id, $plugin_definition, DemoContentParserInterface $parser, EntityStorageInterface $block_storage, ConfigFactory $config_factory, FileStorageInterface $file_storage, FileSystemInterface $file_system) {
parent::__construct($configuration, $plugin_id, $plugin_definition);
$this->parser = $parser;
$this->blockStorage = $block_storage;
$this->configFactory = $config_factory;
$this->fileStorage = $file_storage;
$this->fileSystem = $file_system;
}