You are here

public function SensorConfig::isExtendedInfo in Monitoring 8

Checks if sensor provides extended info.

Return value

bool

Overrides SensorConfigInterface::isExtendedInfo

File

src/Entity/SensorConfig.php, line 291
Contains \Drupal\monitoring\Entity\SensorConfig.

Class

SensorConfig
Represents a sensor config entity class.

Namespace

Drupal\monitoring\Entity

Code

public function isExtendedInfo() {
  return in_array('Drupal\\monitoring\\SensorPlugin\\ExtendedInfoSensorPluginInterface', class_implements($this
    ->getSensorClass()));
}