You are here

public function SavedSearchTypeForm::setNotificationPluginManager in Search API Saved Searches 8

Sets the notification plugin manager.

Parameters

\Drupal\search_api_saved_searches\Notification\NotificationPluginManagerInterface $notification_plugin_manager: The new notification plugin manager.

Return value

$this

File

src/Form/SavedSearchTypeForm.php, line 91

Class

SavedSearchTypeForm
Provides a form for adding and editing saved search types.

Namespace

Drupal\search_api_saved_searches\Form

Code

public function setNotificationPluginManager(NotificationPluginManagerInterface $notification_plugin_manager) {
  $this->notificationPluginManager = $notification_plugin_manager;
  return $this;
}