You are here

public function UpdateBase::getDescription in Express 8

Retrieves the update description, if any.

Return value

string The update description.

Overrides UpdateInterface::getDescription

File

themes/contrib/bootstrap/src/Plugin/Update/UpdateBase.php, line 23
Contains \Drupal\bootstrap\Plugin\Update\UpdateBase.

Class

UpdateBase
Base class for an update.

Namespace

Drupal\bootstrap\Plugin\Update

Code

public function getDescription() {
  return isset($this->pluginDefinition['description']) ? $this->pluginDefinition['description'] : NULL;
}