You are here

public function FeedsConfigurable::isEnabled in Feeds 7.2

Determine whether this object is enabled.

Return value

bool True if the object is enabled. False otherwise.

1 call to FeedsConfigurable::isEnabled()
FeedsConfigurable::existing in includes/FeedsConfigurable.inc
Determines whether this object is persistent and enabled.

File

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

Class

FeedsConfigurable
Base class for configurable classes.

Code

public function isEnabled() {
  return $this->disabled ? FALSE : TRUE;
}