You are here

public function FeedsSource::doesExist in Feeds 7.2

Overrides FeedsConfigurable::doesExist().

Checks the following:

  • If the importer is persistent (= defined in code or DB).
  • If the source is persistent (= defined in DB).

Overrides FeedsConfigurable::doesExist

1 call to FeedsSource::doesExist()
FeedsSource::getNextImportTimeDetails in includes/FeedsSource.inc
Returns the next time that the feed will be imported.

File

includes/FeedsSource.inc, line 1055
Definition of FeedsSourceInterface, FeedsState and FeedsSource class.

Class

FeedsSource
Holds the source of a feed to import.

Code

public function doesExist() {
  return $this->importer
    ->doesExist() && parent::doesExist();
}