You are here

public function FeedsConfigurable::getConfig in Feeds 7

Same name and namespace in other branches
  1. 6 includes/FeedsConfigurable.inc \FeedsConfigurable::getConfig()
  2. 7.2 includes/FeedsConfigurable.inc \FeedsConfigurable::getConfig()

Implements getConfig().

2 calls to FeedsConfigurable::getConfig()
FeedsConfigurable::__get in includes/FeedsConfigurable.inc
Override magic method __get(). Make sure that $this->config goes through getConfig()
FeedsSource::save in includes/FeedsSource.inc
Save configuration.
1 method overrides FeedsConfigurable::getConfig()
FeedsImporter::getConfig in includes/FeedsImporter.inc
Get configuration of this feed.

File

includes/FeedsConfigurable.inc, line 145
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 function getConfig() {
  return $this->config;
}