You are here

public function InstallablePlugin::isInstalled in Markdown 8.2

Indicates whether plugin is installed.

Return value

bool TRUE or FALSE

File

src/Annotation/InstallablePlugin.php, line 128

Class

InstallablePlugin
Base annotation for "installable" plugins.

Namespace

Drupal\markdown\Annotation

Code

public function isInstalled() {
  return empty($this->requirementViolations);
}