You are here

public function Parsedown::settingExists in Markdown 8.2

Flag indicating whether a setting exists.

Parameters

string $name: The name of the setting to check.

Return value

bool TRUE or FALSE

Overrides SettingsTrait::settingExists

File

src/Plugin/Markdown/Parsedown/Parsedown.php, line 208

Class

Parsedown
Support for Parsedown by Emanuil Rusev.

Namespace

Drupal\markdown\Plugin\Markdown\Parsedown

Code

public function settingExists($name) {
  return !!$this
    ->getSettingMethod($name);
}