You are here

protected function DefaultEntityProcessorForm::getDeprecatedActionClasses in Feeds 8.3

Returns a list of classes from deprecated action plugins.

Return value

string[] An array of class names.

1 call to DefaultEntityProcessorForm::getDeprecatedActionClasses()
DefaultEntityProcessorForm::getUpdateNonExistentActions in src/Feeds/Processor/Form/DefaultEntityProcessorForm.php
Get available actions to apply on the entity.

File

src/Feeds/Processor/Form/DefaultEntityProcessorForm.php, line 278

Class

DefaultEntityProcessorForm
The configuration form for the CSV parser.

Namespace

Drupal\feeds\Feeds\Processor\Form

Code

protected function getDeprecatedActionClasses() {

  // @todo remove when Drupal 8 support has ended.
  return [
    'Drupal\\comment\\Plugin\\Action\\PublishComment',
    'Drupal\\comment\\Plugin\\Action\\UnpublishComment',
    'Drupal\\comment\\Plugin\\Action\\SaveComment',
    'Drupal\\node\\Plugin\\Action\\PublishNode',
    'Drupal\\node\\Plugin\\Action\\UnpublishNode',
    'Drupal\\node\\Plugin\\Action\\SaveNode',
  ];
}