You are here

public function Settings::isNodeMonitoringEnabled in Drupalmonitor 8

Check whether Node Monitoring is enabled.

Return value

bool TRUE if enabled, otherwise FALSE.

File

src/Settings.php, line 115

Class

Settings
Class Settings.

Namespace

Drupal\drupalmonitor

Code

public function isNodeMonitoringEnabled() {
  return $this->settings
    ->get(static::CONFIG_KEY_NODE_MONITORING);
}