Revert "Issue #2196977 by Eric_A, tadityar, Poornima3, jhedstrom: Drupal/filter/Annotation/Filter uses public $module instead of $provider"
Oops. Forgot we're in majors/criticals only mode today.
This reverts commit 1621ae8b76
.
8.0.x
8.0.0-beta4
parent
1621ae8b76
commit
e15ebedc4c
|
@ -46,11 +46,11 @@ class Condition extends Plugin {
|
|||
public $label;
|
||||
|
||||
/**
|
||||
* The name of the provider that owns the filter.
|
||||
* The name of the module providing the type.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $provider;
|
||||
public $module;
|
||||
|
||||
/**
|
||||
* 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.
|
||||
* - provider: The name of the provider that owns the filter.
|
||||
* - module: The name of the module providing 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 provider that owns this filter.
|
||||
* The name of the module that owns this filter.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue