You are here

public function FeedsConfigurable::doesExist in Feeds 7.2

Determine whether this object is persistent.

Return value

bool True if the object is persistent. False otherwise.

2 calls to FeedsConfigurable::doesExist()
FeedsConfigurable::existing in includes/FeedsConfigurable.inc
Determines whether this object is persistent and enabled.
FeedsSource::doesExist in includes/FeedsSource.inc
Overrides FeedsConfigurable::doesExist().
1 method overrides FeedsConfigurable::doesExist()
FeedsSource::doesExist in includes/FeedsSource.inc
Overrides FeedsConfigurable::doesExist().

File

includes/FeedsConfigurable.inc, line 128
FeedsConfigurable and helper functions.

Class

FeedsConfigurable
Base class for configurable classes.

Code

public function doesExist() {
  return $this->export_type == FEEDS_EXPORT_NONE ? FALSE : TRUE;
}