You are here

class CommonMark in Markdown 8.2

Support for CommonMark by The League of Extraordinary Packages.

Plugin annotation


@MarkdownAllowedHtml(
  id = "commonmark",
)
@MarkdownParser(
  id = "commonmark",
  label = @Translation("CommonMark"),
  description = @Translation("A robust, highly-extensible Markdown parser for PHP based on the CommonMark specification."),
  extensionInterfaces = {
    "\Drupal\markdown\Plugin\Markdown\CommonMark\ExtensionInterface",
  },
  libraries = {
    @ComposerPackage(
      id = "league/commonmark",
      object = "\League\CommonMark\CommonMarkConverter",
      url = "https://commonmark.thephpleague.com",
      requirements = {
        @InstallableRequirement(
          constraints = {"Version" = ">=0.4.0 <=1.0.0 || ^1.0 || ^2.0"}
        ),
      },
    ),
    @ComposerPackage(
      id = "colinodell/commonmark-php",
      deprecated = @Translation("Support for this library was deprecated in markdown:8.x-2.0 and will be removed from markdown:3.0.0."),
      object = "\ColinODell\CommonMark\CommonMarkConverter",
      ui = false,
      url = "https://commonmark.thephpleague.com",
      requirements = {
        @InstallableRequirement(
          constraints = {"Version" = "<0.4.0"},
        ),
      },
    ),
  },
)

Hierarchy

Expanded class hierarchy of CommonMark

1 file declares its use of CommonMark
ExternalLinkExtension.php in src/Plugin/Markdown/CommonMark/Extension/ExternalLinkExtension.php

File

src/Plugin/Markdown/CommonMark/CommonMark.php, line 57

Namespace

Drupal\markdown\Plugin\Markdown\CommonMark
View source
class CommonMark extends BaseExtensibleParser implements AllowedHtmlInterface {
  use ParserAllowedHtmlTrait;

  /**
   * The converter class.
   *
   * @var string
   */
  protected static $converterClass;

  /**
   * The environment class.
   *
   * @var string
   */
  protected static $environmentClass;

  /**
   * The installed version.
   *
   * @var string
   */
  protected static $version;

  /**
   * A CommonMark converter instance.
   *
   * @var \League\CommonMark\CommonMarkConverter|\ColinODell\CommonMark\CommonMarkConverter
   */
  protected $converter;

  /**
   * A CommonMark environment instance.
   *
   * @var \League\CommonMark\Environment\ConfigurableEnvironmentInterface|\League\CommonMark\ConfigurableEnvironmentInterface|\League\CommonMark\Environment
   */
  protected $environment;

  /**
   * {@inheritdoc}
   */
  public function __sleep() {
    unset($this->converter);
    unset($this->environment);
    return parent::__sleep();
  }

  /**
   * {@inheritdoc}
   */
  public static function defaultSettings($pluginDefinition) {

    /* @var \Drupal\markdown\Annotation\InstallablePlugin $pluginDefinition */

    // CommonMark didn't have configuration until 0.6.0.
    if (!$pluginDefinition->version || Semver::satisfies($pluginDefinition->version, '<0.6.0')) {
      return [];
    }
    return [
      'allow_unsafe_links' => TRUE,
      'enable_em' => TRUE,
      'enable_strong' => TRUE,
      'html_input' => 'escape',
      'max_nesting_level' => 0,
      'renderer' => [
        'block_separator' => "\n",
        'inner_separator' => "\n",
        'soft_break' => "\n",
      ],
      'use_asterisk' => TRUE,
      'use_underscore' => TRUE,
      'unordered_list_markers' => [
        '-',
        '*',
        '+',
      ],
    ] + parent::defaultSettings($pluginDefinition);
  }

  /**
   * Retrieves the converter class to be used.
   *
   * @return string|\League\CommonMark\CommonMarkConverter|\ColinODell\CommonMark\CommonMarkConverter
   *   The converter class.
   */
  public static function converterClass() {
    if (!isset(static::$converterClass)) {
      $classes = [
        // >=0.4.0.
        '\\League\\CommonMark\\CommonMarkConverter',
        // 0.1.0 - 0.3.0.
        '\\ColinODell\\CommonMark\\CommonMarkConverter',
      ];
      foreach ($classes as $class) {
        if (class_exists($class)) {
          static::$converterClass = $class;
        }
      }
    }
    return static::$converterClass;
  }

  /**
   * Retrieves the environment class to be used.
   *
   * @return string|\League\CommonMark\Environment\Environment|\League\CommonMark\Environment
   *   The environment class.
   */
  public static function environmentClass() {
    if (!isset(static::$environmentClass)) {
      $classes = [
        // 2.x.
        '\\League\\CommonMark\\Environment\\Environment',
        // 0.x, 1.x.
        '\\League\\CommonMark\\Environment',
      ];
      foreach ($classes as $class) {
        if (class_exists($class)) {
          static::$environmentClass = $class;
        }
      }
    }
    return static::$environmentClass;
  }

  /**
   * {@inheritdoc}
   */
  protected function convertToHtml($markdown, LanguageInterface $language = NULL) {
    return $this
      ->converter()
      ->convertToHtml($markdown);
  }

  /**
   * {@inheritdoc}
   */
  public function buildConfigurationForm(array $element, FormStateInterface $form_state) {

    /** @var \Drupal\markdown\Form\SubformStateInterface $form_state */
    $element = parent::buildConfigurationForm($element, $form_state);
    $element += $this
      ->createSettingElement('allow_unsafe_links', [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Allow Unsafe Links'),
      '#description' => $this
        ->t('Allows potentially risky links and image URLs to remain in the document.'),
    ], $form_state);
    $this
      ->renderStrategyDisabledSettingState($form_state, $element['allow_unsafe_links']);
    $element += $this
      ->createSettingElement('enable_em', [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enable Emphasis'),
      '#description' => $this
        ->t('Enables <code>&lt;em&gt;</code> parsing.'),
    ], $form_state);
    $element += $this
      ->createSettingElement('enable_strong', [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Enable Strong'),
      '#description' => $this
        ->t('Enables <code>&lt;strong&gt;</code> parsing.'),
    ], $form_state);
    $element += $this
      ->createSettingElement('html_input', [
      '#weight' => -1,
      '#type' => 'select',
      '#title' => $this
        ->t('HTML Input'),
      '#description' => $this
        ->t('Strategy to use when handling raw HTML input.'),
      '#options' => [
        'allow' => $this
          ->t('Allow'),
        'escape' => $this
          ->t('Escape'),
        'strip' => $this
          ->t('Strip'),
      ],
    ], $form_state);
    $this
      ->renderStrategyDisabledSettingState($form_state, $element['html_input']);

    // Always allow html_input when using a render strategy.
    if ($this
      ->getRenderStrategy() !== static::NONE) {
      $element['html_input']['#value'] = 'allow';
    }
    $element += $this
      ->createSettingElement('max_nesting_level', [
      '#type' => 'number',
      '#title' => $this
        ->t('Maximum Nesting Level'),
      '#description' => $this
        ->t('The maximum nesting level for blocks. Setting this to a positive integer can help protect against long parse times and/or segfaults if blocks are too deeply-nested.'),
      '#min' => 0,
      '#max' => 100000,
    ], $form_state, 'intval');
    $element['renderer'] = [
      '#type' => 'container',
    ];
    $rendererSubformState = SubformState::createForSubform($element['renderer'], $element, $form_state);
    $element['renderer'] += $this
      ->createSettingElement('renderer.block_separator', [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Block Separator'),
      '#description' => $this
        ->t('String to use for separating renderer block elements.'),
    ], $rendererSubformState, '\\Drupal\\markdown\\Plugin\\Markdown\\CommonMark\\CommonMark::addcslashes');
    $element['renderer'] += $this
      ->createSettingElement('renderer.inner_separator', [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Inner Separator'),
      '#description' => $this
        ->t('String to use for separating inner block contents.'),
    ], $rendererSubformState, '\\Drupal\\markdown\\Plugin\\Markdown\\CommonMark\\CommonMark::addcslashes');
    $element['renderer'] += $this
      ->createSettingElement('renderer.soft_break', [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Soft Break'),
      '#description' => $this
        ->t('String to use for rendering soft breaks.'),
    ], $rendererSubformState, '\\Drupal\\markdown\\Plugin\\Markdown\\CommonMark\\CommonMark::addcslashes');
    $element['renderer']['#access'] = $element['renderer']['block_separator']['#access'];
    $element += $this
      ->createSettingElement('use_asterisk', [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Use Asterisk'),
      '#description' => $this
        ->t('Enables parsing of <code>*</code> for emphasis.'),
    ], $form_state);
    $element += $this
      ->createSettingElement('use_underscore', [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Use Underscore'),
      '#description' => $this
        ->t('Enables parsing of <code>_</code> for emphasis.'),
    ], $form_state);
    $element += $this
      ->createSettingElement('unordered_list_markers', [
      '#type' => 'textarea',
      '#title' => $this
        ->t('Unordered List Markers'),
      '#description' => $this
        ->t('Characters that are used to indicated a bulleted list; only one character per line.'),
    ], $form_state, '\\Drupal\\markdown\\Util\\KeyValuePipeConverter::denormalizeNoKeys');
    return $element;
  }

  /**
   * Wrapper method to assist with setting values in form.
   *
   * @param string $string
   *   The string to add slashes.
   * @param string $charlist
   *   The character list that slashes will be added to.
   *
   * @return string
   *   The modified string.
   */
  public static function addcslashes($string, $charlist = "\n\r\t") {
    return \addcslashes($string, $charlist);
  }

  /**
   * Retrieves a CommonMark converter instance.
   *
   * @return \League\CommonMark\CommonMarkConverter|\ColinODell\CommonMark\CommonMarkConverter
   *   A CommonMark converter.
   */
  public function converter() {
    if (!$this->converter) {
      $version = $this
        ->getVersion();
      if (Semver::satisfies($version, '>=0.13.0')) {
        $this->converter = $this
          ->getObject($this
          ->getSettings(TRUE), $this
          ->getEnvironment());
      }
      elseif (Semver::satisfies($version, '>=0.6.0 <0.13.0')) {
        $this->converter = $this
          ->getObject($this
          ->getSettings(TRUE));
      }
      else {
        $this->converter = $this
          ->getObject();
      }
    }
    return $this->converter;
  }

  /**
   * Creates an environment.
   *
   * @return \League\CommonMark\ConfigurableEnvironmentInterface|\League\CommonMark\Environment
   *   A CommonMark environment.
   */
  protected function createEnvironment() {
    $environment = static::environmentClass();
    return $environment::createCommonMarkEnvironment();
  }

  /**
   * {@inheritdoc}
   */
  public function extensionInterfaces() {

    // Some older versions of CommonMark didn't support external extensions.
    if (!interface_exists('\\League\\CommonMark\\Extension\\ExtensionInterface')) {
      return [];
    }
    return parent::extensionInterfaces();
  }

  /**
   * {@inheritdoc}
   */
  public function getConfiguration() {
    $configuration = parent::getConfiguration();

    // Unless the render strategy is set to "none", force the following
    // settings so the parser doesn't attempt to filter things.
    if ($this
      ->getRenderStrategy() !== static::NONE) {
      $configuration['settings']['allow_unsafe_links'] = TRUE;
      $configuration['settings']['html_input'] = 'allow';
    }

    // Escape newlines.
    if (isset($configuration['settings']['renderer']) && is_array($configuration['settings']['renderer'])) {
      foreach ($configuration['settings']['renderer'] as &$setting) {
        $setting = addcslashes($setting, "\n\r\t");
      }
    }

    // Set infinite max nesting level to 0.
    if (isset($configuration['settings']['max_nesting_level']) && $configuration['settings']['max_nesting_level'] === INF) {
      $configuration['settings']['max_nesting_level'] = 0;
    }

    // Normalize settings from a key|value string into an associative array.
    foreach ([
      'unordered_list_markers',
    ] as $name) {
      if (isset($configuration['settings'][$name])) {
        $configuration['settings'][$name] = KeyValuePipeConverter::normalize($configuration['settings'][$name]);
      }
    }
    return $configuration;
  }

  /**
   * Retrieves a CommonMark environment, creating it if necessary.
   *
   * @return \League\CommonMark\Environment
   *   The CommonMark environment.
   */
  protected function getEnvironment() {
    if (!$this->environment) {
      $environment = $this
        ->createEnvironment();
      $settings = $this
        ->getSettings(TRUE);

      // Unless the render strategy is set to "none", force the following
      // settings so the parser doesn't attempt to filter things.
      if ($this
        ->getRenderStrategy() !== static::NONE) {
        $settings['allow_unsafe_links'] = TRUE;
        $settings['html_input'] = 'allow';
      }
      $extensions = $this
        ->extensions();
      foreach ($extensions as $extension) {

        /* @var \Drupal\markdown\Plugin\Markdown\CommonMark\ExtensionInterface $extension */

        // Skip disabled extensions.
        if (!$extension
          ->isEnabled()) {
          continue;
        }

        // Add extension settings.
        if ($extension instanceof SettingsInterface) {

          // Because CommonMark is highly extensible, any extension that
          // implements settings should provide a specific and unique settings
          // key to wrap its settings when passing it to the environment config.
          // In the off chance the extension absolutely must merge with the
          // root level, it can pass an empty value (i.e. '' or 0); NULL will
          // throw an exception and FALSE will ignore merging with the parsing
          // config altogether.
          $settingsKey = $extension
            ->settingsKey();
          if ($settingsKey === NULL || $settingsKey === TRUE) {
            throw new InvalidPluginDefinitionException($extension
              ->getPluginId(), sprintf('The "%s" markdown extension must also supply a value in %s. This is a requirement of the parser so it knows how extension settings should be merged.', $extension
              ->getPluginId(), '\\Drupal\\markdown\\Plugin\\Markdown\\SettingsInterface::settingsKey'));
          }

          // If the extension plugin specifies anything other than FALSE, merge.
          if ($settingsKey !== FALSE) {
            $extensionSettings = $extension
              ->getSettings(TRUE);
            if ($settingsKey) {
              $extensionSettings = [
                $settingsKey => $extensionSettings,
              ];
            }
            $settings = NestedArray::mergeDeep($settings, $extensionSettings);
          }
        }

        // Finally, let the extension register itself with the environment.
        // Note: this is our own custom method, that is used throughout the
        // commonmark based @ MarkdownExtension plugins so they can work
        // across multiple API versions where entire interfaces have changed.
        // @see \Drupal\markdown\Plugin\Markdown\CommonMark\ExtensionInterface::register()
        $extension
          ->register($environment);
      }

      // Merge settings into config.
      $environment
        ->setConfig(NestedArray::mergeDeep($environment
        ->getConfig(), $settings));
      $this->environment = $environment;
    }
    return $this->environment;
  }

  /**
   * {@inheritdoc}
   */
  public function setConfiguration(array $configuration) {

    // Convert newlines to actual newlines.
    if (isset($configuration['settings']['renderer'])) {
      foreach ($configuration['settings']['renderer'] as &$setting) {
        $setting = stripcslashes($setting);
      }
    }

    // Set the max nesting level to infinite if not a positive number.
    if (isset($configuration['settings']['max_nesting_level']) && $configuration['settings']['max_nesting_level'] <= 0) {
      $configuration['settings']['max_nesting_level'] = INF;
    }

    // Normalize settings from a key|value string into an associative array.
    foreach ([
      'unordered_list_markers',
    ] as $name) {
      if (isset($configuration['settings'][$name])) {
        $configuration['settings'][$name] = KeyValuePipeConverter::normalize($configuration['settings'][$name]);
      }
    }
    return parent::setConfiguration($configuration);
  }

  /**
   * {@inheritdoc}
   */
  public function validateConfigurationForm(array &$form, FormStateInterface $form_state) {
    parent::validateConfigurationForm($form, $form_state);
    if ($unorderedListMarkers = $form_state
      ->getValue('unordered_list_markers')) {
      $unorderedListMarkers = KeyValuePipeConverter::normalize($unorderedListMarkers);
      foreach ($unorderedListMarkers as $marker) {
        if (strlen($marker) > 1) {
          $form_state
            ->setError($form['unordered_list_markers'], $this
            ->t('The Unordered List Markers must be only one character per line.'));
        }
      }
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AnnotatedPluginBase::$originalPluginId protected property The original plugin_id that was called, not a fallback identifier.
AnnotatedPluginBase::create public static function Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface::create
AnnotatedPluginBase::getConfigurationOverrides public function Retrieves the configuration overrides for the plugin. Overrides AnnotatedPluginInterface::getConfigurationOverrides
AnnotatedPluginBase::getDescription public function Retrieves the description of the plugin, if set. Overrides AnnotatedPluginInterface::getDescription
AnnotatedPluginBase::getOriginalPluginId public function Retrieves the original plugin identifier. Overrides AnnotatedPluginInterface::getOriginalPluginId
AnnotatedPluginBase::getProvider public function Returns the provider (extension name) of the plugin. Overrides AnnotatedPluginInterface::getProvider
AnnotatedPluginBase::getWeight public function Returns the weight of the plugin (used for sorting). Overrides AnnotatedPluginInterface::getWeight
AnnotatedPluginBase::__construct public function Constructs a \Drupal\Component\Plugin\PluginBase object. Overrides PluginBase::__construct
AnnotatedPluginBase::__toString public function
BaseExtensibleParser::$extensionCollection protected property A collection of MarkdownExtension plugins specific to the parser.
BaseExtensibleParser::$extensions protected property The extension configuration.
BaseExtensibleParser::defaultConfiguration public function Gets default configuration for this plugin. Overrides InstallablePluginBase::defaultConfiguration
BaseExtensibleParser::extension public function Retrieves a specific extension plugin instance. Overrides ExtensibleParserInterface::extension
BaseExtensibleParser::extensions public function Returns the ordered collection of extension plugin instances. Overrides ExtensibleParserInterface::extensions
BaseExtensibleParser::getBundledExtensionIds public function Retrieves plugin identifiers of extensions bundled with the parser. Overrides ExtensibleParserInterface::getBundledExtensionIds
BaseExtensibleParser::getConfigurationSortOrder protected function Determines the configuration sort order by weight. Overrides BaseParser::getConfigurationSortOrder
BaseExtensibleParser::getPluginCollections public function Gets the plugin collections used by this object. Overrides ObjectWithPluginCollectionInterface::getPluginCollections
BaseExtensibleParser::getPluginDependencies protected function Overrides InstallablePluginBase::getPluginDependencies
BaseExtensibleParser::isExtensionRequired protected function Indicates whether an extension is "required" by another extension.
BaseExtensibleParser::setExtensionConfig public function Sets the configuration for an extension plugin instance.
BaseParser::$enabled protected property
BaseParser::getAllowedHtml Deprecated public function Overrides RenderStrategyInterface::getAllowedHtml
BaseParser::getAllowedHtmlPlugins public function Retrieves the allowed HTML plugins relevant to the object. Overrides RenderStrategyInterface::getAllowedHtmlPlugins
BaseParser::getContext protected function Builds context around a markdown parser's hierarchy filter format chain.
BaseParser::getCustomAllowedHtml public function Retrieves the custom (user provided) allowed HTML. Overrides RenderStrategyInterface::getCustomAllowedHtml
BaseParser::getRenderStrategy public function Retrieves the render strategy to use. Overrides RenderStrategyInterface::getRenderStrategy
BaseParser::parse public function Parses markdown into HTML. Overrides ParserInterface::parse
BaseParser::renderStrategyDisabledSetting protected function A description explaining why a setting is disabled due to render strategy.
BaseParser::renderStrategyDisabledSettingState protected function Adds a conditional state for a setting element based on render strategy.
BaseParser::validateSettings public static function Validates parser settings.
CacheableDependencyTrait::$cacheContexts protected property Cache contexts.
CacheableDependencyTrait::$cacheMaxAge protected property Cache max-age.
CacheableDependencyTrait::$cacheTags protected property Cache tags.
CacheableDependencyTrait::getCacheContexts public function 3
CacheableDependencyTrait::getCacheMaxAge public function 3
CacheableDependencyTrait::getCacheTags public function 3
CacheableDependencyTrait::setCacheability protected function Sets cacheability; useful for value object constructors.
CommonMark::$converter protected property A CommonMark converter instance.
CommonMark::$converterClass protected static property The converter class. 1
CommonMark::$environment protected property A CommonMark environment instance.
CommonMark::$environmentClass protected static property The environment class.
CommonMark::$version protected static property The installed version.
CommonMark::addcslashes public static function Wrapper method to assist with setting values in form.
CommonMark::buildConfigurationForm public function Form constructor. Overrides BaseParser::buildConfigurationForm
CommonMark::converter public function Retrieves a CommonMark converter instance.
CommonMark::converterClass public static function Retrieves the converter class to be used. 1
CommonMark::convertToHtml protected function Converts Markdown into HTML. Overrides BaseParser::convertToHtml
CommonMark::createEnvironment protected function Creates an environment. 1
CommonMark::defaultSettings public static function Overrides SettingsTrait::defaultSettings
CommonMark::environmentClass public static function Retrieves the environment class to be used.
CommonMark::extensionInterfaces public function An array of extension interfaces that the parser supports. Overrides BaseExtensibleParser::extensionInterfaces
CommonMark::getConfiguration public function Gets this plugin's configuration. Overrides BaseExtensibleParser::getConfiguration
CommonMark::getEnvironment protected function Retrieves a CommonMark environment, creating it if necessary.
CommonMark::setConfiguration public function Sets the configuration for this plugin instance. Overrides InstallablePluginBase::setConfiguration
CommonMark::validateConfigurationForm public function Overrides SettingsTrait::validateConfigurationForm
CommonMark::__sleep public function Overrides DependencySerializationTrait::__sleep
DependencySerializationTrait::$_entityStorages protected property An array of entity type IDs keyed by the property name of their storages.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__wakeup public function 2
DependencyTrait::$dependencies protected property The object's dependencies.
DependencyTrait::addDependencies protected function Adds multiple dependencies.
DependencyTrait::addDependency protected function Adds a dependency.
EnabledPluginTrait::enabledByDefault public function 1
EnabledPluginTrait::isEnabled public function
FilterAwareTrait::$filter protected property A Filter plugin.
FilterAwareTrait::getFilter public function
FilterAwareTrait::setFilter public function
InstallablePluginBase::$config protected property The config for this plugin.
InstallablePluginBase::buildLibrary public function Builds a display for a library. Overrides InstallablePluginInterface::buildLibrary
InstallablePluginBase::buildStatus public function Builds a display status based on the current state of the plugin. Overrides InstallablePluginInterface::buildStatus
InstallablePluginBase::calculateDependencies public function Calculates dependencies for the configured plugin. Overrides DependentPluginInterface::calculateDependencies
InstallablePluginBase::config public function Retrieves the config instance for this plugin. Overrides InstallablePluginInterface::config
InstallablePluginBase::createConfig protected static function
InstallablePluginBase::getAvailableInstalls public function Retrieves available installs.
InstallablePluginBase::getConfigurationName protected function Returns the configuration name for the plugin.
InstallablePluginBase::getContainer public function Retrieves the container.
InstallablePluginBase::getDeprecated public function Retrieves the deprecation message, if any. Overrides InstallablePluginInterface::getDeprecated
InstallablePluginBase::getExperimental public function Retrieves the experimental message. Overrides InstallablePluginInterface::getExperimental
InstallablePluginBase::getInstalledId public function Retrieves the composer package name of the installable library, if any. Overrides InstallablePluginInterface::getInstalledId
InstallablePluginBase::getInstalledLibrary public function Retrieves the installed library used by the plugin. Overrides InstallablePluginInterface::getInstalledLibrary
InstallablePluginBase::getLabel public function Displays the human-readable label of the plugin. Overrides AnnotatedPluginBase::getLabel
InstallablePluginBase::getLink public function Retrieves the plugin as a link using its label and URL. Overrides InstallablePluginInterface::getLink
InstallablePluginBase::getObject public function @TODO: Refactor to use variadic parameters. Overrides InstallablePluginInterface::getObject
InstallablePluginBase::getObjectClass public function Retrieves the class name of the object defined by the installed library. Overrides InstallablePluginInterface::getObjectClass
InstallablePluginBase::getPreferredLibrary public function Retrieves the preferred library of the plugin. Overrides InstallablePluginInterface::getPreferredLibrary
InstallablePluginBase::getSortedConfiguration public function Retrieves the configuration for the plugin, but sorted. Overrides InstallablePluginInterface::getSortedConfiguration
InstallablePluginBase::getUrl public function Retrieves the URL of the plugin, if set. Overrides InstallablePluginInterface::getUrl
InstallablePluginBase::getVersion public function The current version of the plugin. Overrides InstallablePluginInterface::getVersion
InstallablePluginBase::getVersionConstraint public function
InstallablePluginBase::hasMultipleLibraries public function Indicates whether plugin has multiple installs to check. Overrides InstallablePluginInterface::hasMultipleLibraries
InstallablePluginBase::isInstalled public function Indicates whether the plugin is installed. Overrides InstallablePluginInterface::isInstalled
InstallablePluginBase::isPreferred public function Indicates whether the plugin is using the preferred library. Overrides InstallablePluginInterface::isPreferred
InstallablePluginBase::isPreferredLibraryInstalled public function Indicates whether the preferred library is installed. Overrides InstallablePluginInterface::isPreferredLibraryInstalled
InstallablePluginBase::showInUi public function Indicates whether the plugin should be shown in the UI. Overrides InstallablePluginInterface::showInUi
MessengerTrait::$messenger protected property The messenger. 29
MessengerTrait::messenger public function Gets the messenger. 29
MessengerTrait::setMessenger public function Sets the messenger.
MoreInfoTrait::moreInfo protected function Appends existing content with a "More Info" link.
ParserAllowedHtmlTrait::allowedHtmlTags public function 1
PluginBase::$configuration protected property Configuration information passed into the plugin. 1
PluginBase::$pluginDefinition protected property The plugin implementation definition. 1
PluginBase::$pluginId protected property The plugin_id.
PluginBase::DERIVATIVE_SEPARATOR constant A string which is used to separate base plugin IDs from the derivative ID.
PluginBase::getBaseId public function Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface::getBaseId
PluginBase::getDerivativeId public function Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface::getDerivativeId
PluginBase::getPluginDefinition public function Gets the definition of the plugin implementation. Overrides PluginInspectionInterface::getPluginDefinition 3
PluginBase::getPluginId public function Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface::getPluginId
PluginBase::isConfigurable public function Determines if the plugin is configurable.
PluginDependencyTrait::calculatePluginDependencies protected function Calculates and adds dependencies of a specific plugin instance.
PluginDependencyTrait::getPluginDependencies protected function Calculates and returns dependencies of a specific plugin instance. Aliased as: getPluginDependenciesTrait
PluginDependencyTrait::moduleHandler protected function Wraps the module handler.
PluginDependencyTrait::themeHandler protected function Wraps the theme handler.
RefinableCacheableDependencyTrait::addCacheableDependency public function 1
RefinableCacheableDependencyTrait::addCacheContexts public function
RefinableCacheableDependencyTrait::addCacheTags public function
RefinableCacheableDependencyTrait::mergeCacheMaxAge public function
RendererTrait::$renderer protected static property The Renderer service.
RendererTrait::renderer protected function Retrieves the Renderer service.
RenderStrategyInterface::DOCUMENTATION_URL constant The documentation URL for further explaining render strategies.
RenderStrategyInterface::ESCAPE_INPUT constant Strategy used to escape HTML input prior to parsing markdown.
RenderStrategyInterface::FILTER_OUTPUT constant Strategy used to filter the output of parsed markdown.
RenderStrategyInterface::MARKDOWN_XSS_URL Deprecated constant The URL for explaining Markdown and XSS; render strategies.
RenderStrategyInterface::NONE constant No render strategy.
RenderStrategyInterface::STRIP_INPUT constant Strategy used to remove HTML input prior to parsing markdown.
SettingsTrait::createSettingElement protected function Creates a setting element.
SettingsTrait::getDefaultSetting public function
SettingsTrait::getSetting public function
SettingsTrait::getSettingOverrides public function
SettingsTrait::getSettings public function
SettingsTrait::settingExists public function 2
SettingsTrait::settingsKey public function 6
SettingsTrait::submitConfigurationForm public function
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.