You are here

public function ContentReportSettingsForm::__construct in Open Social 8.8

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php \Drupal\social_content_report\Form\ContentReportSettingsForm::__construct()
  2. 8.5 modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php \Drupal\social_content_report\Form\ContentReportSettingsForm::__construct()
  3. 8.6 modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php \Drupal\social_content_report\Form\ContentReportSettingsForm::__construct()
  4. 8.7 modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php \Drupal\social_content_report\Form\ContentReportSettingsForm::__construct()
  5. 10.3.x modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php \Drupal\social_content_report\Form\ContentReportSettingsForm::__construct()
  6. 10.0.x modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php \Drupal\social_content_report\Form\ContentReportSettingsForm::__construct()
  7. 10.1.x modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php \Drupal\social_content_report\Form\ContentReportSettingsForm::__construct()
  8. 10.2.x modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php \Drupal\social_content_report\Form\ContentReportSettingsForm::__construct()

Class constructor.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The config factory.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: Entity type manager.

Overrides ConfigFormBase::__construct

File

modules/social_features/social_content_report/src/Form/ContentReportSettingsForm.php, line 33

Class

ContentReportSettingsForm
Class EventSettingsForm.

Namespace

Drupal\social_content_report\Form

Code

public function __construct(ConfigFactoryInterface $config_factory, EntityTypeManagerInterface $entity_type_manager) {
  parent::__construct($config_factory);
  $this->entityTypeManager = $entity_type_manager;
}