You are here

Freelinking.php in Freelinking 4.0.x

Same filename in this branch
  1. 4.0.x src/Annotation/Freelinking.php
  2. 4.0.x src/Plugin/Filter/Freelinking.php
Same filename and directory in other branches
  1. 8.3 src/Annotation/Freelinking.php

File

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

namespace Drupal\freelinking\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a freelinking plugin annotation object.
 *
 * Plugin namespace: Plugin\freelinking.
 *
 * @Annotation
 */
class Freelinking extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The plugin provider.
   *
   * @var string
   */
  public $provider;

  /**
   * The human-readable name of the freelinking plugin.
   *
   * This is used as an administrative summary in the freelinking filter
   * settings.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

  /**
   * The plugin configuration.
   *
   * @var array
   */
  public $settings = [];

  /**
   * Describes whether or not the plugin can be disabled.
   *
   * @var bool
   */
  public $hidden = FALSE;

}

Classes

Namesort descending Description
Freelinking Defines a freelinking plugin annotation object.