You are here

public function PluginBase::pluginType in Feeds 8.3

Returns the type of plugin.

Return value

string The type of plugin. Usually, one of 'fetcher', 'parser', or 'processor'.

Overrides FeedsPluginInterface::pluginType

See also

\Drupal\feeds\Plugin\Type\FeedsPluginManager::processDefinition()

1 call to PluginBase::pluginType()
UploadFetcher::deleteFile in src/Feeds/Fetcher/UploadFetcher.php
Deletes a file.

File

src/Plugin/Type/PluginBase.php, line 65

Class

PluginBase
The base class for the fetcher, parser, and processor plugins.

Namespace

Drupal\feeds\Plugin\Type

Code

public function pluginType() {
  return $this->pluginDefinition['plugin_type'];
}