You are here

public function FeedsPlugin::save in Feeds 7.2

Same name and namespace in other branches
  1. 6 plugins/FeedsPlugin.inc \FeedsPlugin::save()
  2. 7 plugins/FeedsPlugin.inc \FeedsPlugin::save()

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

1 method overrides FeedsPlugin::save()
FeedsMissingPlugin::save in plugins/FeedsPlugin.inc
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.

File

plugins/FeedsPlugin.inc, line 108
Definition of FeedsPlugin class.

Class

FeedsPlugin
Implement source interface for all plugins.

Code

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