You are here

public static function BaseParser::installed in Markdown 3.0.x

Indicates whether the parser is installed.

Return value

bool

Overrides MarkdownInstallablePluginInterface::installed

4 methods override BaseParser::installed()
LeagueCommonMark::installed in src/Plugin/Markdown/LeagueCommonMark.php
Indicates whether the parser is installed.
Parsedown::installed in src/Plugin/Markdown/Parsedown.php
Indicates whether the parser is installed.
PeclCmark::installed in src/Plugin/Markdown/PeclCmark.php
Indicates whether the parser is installed.
PhpMarkdown::installed in src/Plugin/Markdown/PhpMarkdown.php
Indicates whether the parser is installed.

File

src/Plugin/Markdown/BaseParser.php, line 75

Class

BaseParser
Plugin annotation @MarkdownParser( id = "_broken", label = @Translation("Missing Parser"), )

Namespace

Drupal\markdown\Plugin\Markdown

Code

public static function installed() : bool {
  return FALSE;
}