You are here

public function Base::getPluginDescription in Openlayers 7.3

Return the description of the object's plugin.

Return value

string

Overrides ObjectInterface::getPluginDescription

File

src/Types/Base.php, line 542
Class Object.

Class

Base
Class Base.

Namespace

Drupal\openlayers\Types

Code

public function getPluginDescription() {
  $plugin_definition = $this
    ->getPluginDefinition();
  return isset($plugin_definition['description']) ? $plugin_definition['description'] : '';
}