You are here

public function FeedsPlugin::save in Feeds 8.2

Save changes to the configuration of this object. Delegate saving to parent (= Feed) which will collect information from this object by way of getConfig() and store it.

Overrides FeedsConfigurable::save

File

lib/Drupal/feeds/Plugin/FeedsPlugin.php, line 49
Definition of FeedsPlugin class.

Class

FeedsPlugin
Implement source interface for all plugins.

Namespace

Drupal\feeds\Plugin

Code

public function save() {
  feeds_importer($this->id)
    ->save();
}