You are here

public function InstallablePluginBase::getInstalledId in Markdown 8.2

Retrieves the composer package name of the installable library, if any.

Return value

string|void The installed identifier, if any.

Overrides InstallablePluginInterface::getInstalledId

File

src/Plugin/Markdown/InstallablePluginBase.php, line 215

Class

InstallablePluginBase
Base class for installable plugins.

Namespace

Drupal\markdown\Plugin\Markdown

Code

public function getInstalledId() {
  return $this->pluginDefinition
    ->getInstalledId();
}