abstract public function FeedsConfigurable::save in Feeds 6
Same name and namespace in other branches
- 7.2 includes/FeedsConfigurable.inc \FeedsConfigurable::save()
- 7 includes/FeedsConfigurable.inc \FeedsConfigurable::save()
Save a configuration. Concrete extending classes must implement a save operation.
1 call to FeedsConfigurable::save()
- FeedsConfigurable::configFormSubmit in includes/
FeedsConfigurable.inc - Submission handler for configForm().
3 methods override FeedsConfigurable::save()
- FeedsImporter::save in includes/
FeedsImporter.inc - Save configuration.
- FeedsPlugin::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.
- FeedsSource::save in includes/
FeedsSource.inc - Save configuration.
File
- includes/
FeedsConfigurable.inc, line 103 - FeedsConfigurable and helper functions.
Class
- FeedsConfigurable
- Base class for configurable classes. Captures configuration handling, form handling and distinguishes between in-memory configuration and persistent configuration.
Code
public abstract function save();