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
webchick 2014-12-16 21:17:21 -08:00
parent 1621ae8b76
commit e15ebedc4c
3 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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

View File

@ -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
*/