You are here

BaseMarkdownAnnotation.php in Markdown 3.0.x

Same filename and directory in other branches
  1. 8.2 src/Annotation/BaseMarkdownAnnotation.php

File

src/Annotation/BaseMarkdownAnnotation.php
View source
<?php

namespace Drupal\markdown\Annotation;

use Drupal\Component\Annotation\Plugin;
abstract class BaseMarkdownAnnotation extends Plugin {

  /**
   * The parser identifier.
   *
   * @var string
   */
  protected $id;

  /**
   * The human-readable label.
   *
   * @var string|\Drupal\Core\Annotation\Translation
   */
  protected $label;

  /**
   * The description of the extension.
   *
   * @var string|\Drupal\Core\Annotation\Translation
   */
  protected $description;

  /**
   * Flag indicating whether plugin is installed.
   *
   * @var boolean
   */
  protected $installed;

  /**
   * The parser URL.
   *
   * @var string
   */
  protected $url;

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

  /**
   * The weight of the plugin.
   *
   * @var int
   */
  protected $weight = 0;

}

Classes