You are here

public function FeedsConfigurable::__isset in Feeds 8.2

Override magic method __isset(). This is needed due to overriding __get().

File

lib/Drupal/feeds/Plugin/FeedsConfigurable.php, line 87
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.

Namespace

Drupal\feeds\Plugin

Code

public function __isset($name) {
  return isset($this->{$name}) ? TRUE : FALSE;
}