Skip to content
Snippets Groups Projects
Commit 1621ae8b authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2196977 by Eric_A, tadityar, Poornima3, jhedstrom:...

Issue #2196977 by Eric_A, tadityar, Poornima3, jhedstrom: Drupal/filter/Annotation/Filter uses public $module instead of $provider
parent 723ac958
No related branches found
No related tags found
No related merge requests found
......@@ -46,11 +46,11 @@ class Condition extends Plugin {
public $label;
/**
* The name of the module providing the type.
* The name of the provider that owns the filter.
*
* @var string
*/
public $module;
public $provider;
/**
* An array of contextual data.
......
......@@ -99,7 +99,7 @@ class FilterFormat extends ConfigEntityBase implements FilterFormatInterface, En
* An associative array of filters assigned to the text format, keyed by the
* instance ID of each filter and using the properties:
* - id: The plugin ID of the filter plugin instance.
* - module: The name of the module providing the filter.
* - provider: The name of the provider that owns the filter.
* - status: (optional) A Boolean indicating whether the filter is
* enabled in the text format. Defaults to FALSE.
* - weight: (optional) The weight of the filter in the text format. Defaults
......
......@@ -28,7 +28,7 @@ abstract class FilterBase extends PluginBase implements FilterInterface {
protected $plugin_id;
/**
* The name of the module that owns this filter.
* The name of the provider that owns this filter.
*
* @var string
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment