You are here

public function FeedTypeTamperMeta::getPluginCollections in Feeds Tamper 8.2

Gets the plugin collections used by this object.

Return value

\Drupal\Component\Plugin\LazyPluginCollection[] An array of plugin collections, keyed by the property name they use to store their configuration.

Overrides ObjectWithPluginCollectionInterface::getPluginCollections

1 call to FeedTypeTamperMeta::getPluginCollections()
FeedTypeTamperMeta::updateFeedType in src/FeedTypeTamperMeta.php
Writes tampers back on the feed type.

File

src/FeedTypeTamperMeta.php, line 114

Class

FeedTypeTamperMeta
Class for managing tamper plugins for a feed type.

Namespace

Drupal\feeds_tamper

Code

public function getPluginCollections() {
  return [
    'tampers' => $this
      ->getTampers(),
  ];
}