You are here

public function MeetingForm::__construct in Opigno Moxtra 8

Same name and namespace in other branches
  1. 3.x src/Form/MeetingForm.php \Drupal\opigno_moxtra\Form\MeetingForm::__construct()

Creates a WorkspaceForm object.

Overrides ContentEntityForm::__construct

File

src/Form/MeetingForm.php, line 40

Class

MeetingForm
Provides a form for creating/editing a opigno_moxtra_meeting entity.

Namespace

Drupal\opigno_moxtra\Form

Code

public function __construct(EntityRepositoryInterface $entity_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, TimeInterface $time, PluginManagerInterface $plugin_manager, MoxtraServiceInterface $moxtra_service) {
  parent::__construct($entity_manager, $entity_type_bundle_info, $time);
  $this->pluginManager = $plugin_manager;
  $this->moxtraService = $moxtra_service;
}