You are here

public function TourTipForm::__construct in Tour UI 8

Constructs a new TourTipForm object.

Parameters

\Drupal\Tour\TipPluginManager $plugin_manager: The Tour tip plugin manager.

\Drupal\Core\Messenger\MessengerInterface $messenger: The Messenger service.

File

src/Form/TourTipForm.php, line 39

Class

TourTipForm
Form controller for the tour tip plugin edit forms.

Namespace

Drupal\tour_ui\Form

Code

public function __construct(TipPluginManager $plugin_manager, MessengerInterface $messenger) {
  $this->pluginManager = $plugin_manager;
  $this->messenger = $messenger;
}