You are here

public function SavedSearchType::getNotificationPluginIds in Search API Saved Searches 8

Retrieves the IDs of all notification plugins enabled for this type.

Return value

string[] The IDs of the notification plugins used by this saved search type.

Overrides SavedSearchTypeInterface::getNotificationPluginIds

File

src/Entity/SavedSearchType.php, line 334

Class

SavedSearchType
Provides an entity type for configuring how searches can be saved.

Namespace

Drupal\search_api_saved_searches\Entity

Code

public function getNotificationPluginIds() {
  return array_keys($this
    ->getNotificationPlugins());
}