class TagInvalidation in Purge 8.3
Describes invalidation by Drupal cache tag, e.g.: 'user:1', 'menu:footer'.
Plugin annotation
@PurgeInvalidation(
id = "tag",
label = @Translation("Tag"),
description = @Translation("Invalidates by Drupal cache tag."),
examples = {"node:1", "menu:footer"},
expression_required = TRUE,
expression_can_be_empty = FALSE,
expression_must_be_string = TRUE,
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidationBase implements ImmutableInvalidationInterface
- class \Drupal\purge\Plugin\Purge\Invalidation\InvalidationBase implements InvalidationInterface
- class \Drupal\purge\Plugin\Purge\Invalidation\TagInvalidation implements InvalidationInterface
- class \Drupal\purge\Plugin\Purge\Invalidation\InvalidationBase implements InvalidationInterface
- class \Drupal\purge\Plugin\Purge\Invalidation\ImmutableInvalidationBase implements ImmutableInvalidationInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of TagInvalidation
File
- src/
Plugin/ Purge/ Invalidation/ TagInvalidation.php, line 20
Namespace
Drupal\purge\Plugin\Purge\InvalidationView source
class TagInvalidation extends InvalidationBase implements InvalidationInterface {
/**
* {@inheritdoc}
*/
public function validateExpression() {
parent::validateExpression();
if (strpos($this->expression, '*') !== FALSE) {
throw new InvalidExpressionException('Tag invalidations cannot contain asterisks.');
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
ImmutableInvalidationBase:: |
protected | property | The instance ID of the purger that is about to process this object. | |
ImmutableInvalidationBase:: |
protected | property | Mixed expression (or NULL) that describes what needs to be invalidated. | 1 |
ImmutableInvalidationBase:: |
protected | property | Unique runtime ID for this instance. | |
ImmutableInvalidationBase:: |
protected | property | Purger metadata. | |
ImmutableInvalidationBase:: |
protected | property | Invalidation states per purger. | |
ImmutableInvalidationBase:: |
protected | property | Valid post-processing states. | |
ImmutableInvalidationBase:: |
public | function |
Get the invalidation expression. Overrides ImmutableInvalidationInterface:: |
1 |
ImmutableInvalidationBase:: |
public | function |
Get all stored properties. Overrides ImmutableInvalidationInterface:: |
|
ImmutableInvalidationBase:: |
public | function |
Retrieve a purger specific property value. Overrides ImmutableInvalidationInterface:: |
|
ImmutableInvalidationBase:: |
public | function |
Get the current or general state of the invalidation. Overrides ImmutableInvalidationInterface:: |
1 |
ImmutableInvalidationBase:: |
public | function |
Get all stored state contexts. Overrides ImmutableInvalidationInterface:: |
|
ImmutableInvalidationBase:: |
public | function |
Get all invalidation states. Overrides ImmutableInvalidationInterface:: |
|
ImmutableInvalidationBase:: |
public | function |
Get the current state as string. Overrides ImmutableInvalidationInterface:: |
1 |
ImmutableInvalidationBase:: |
public | function |
Get the current state as user translated string. Overrides ImmutableInvalidationInterface:: |
|
ImmutableInvalidationBase:: |
public | function |
Get the type of invalidation. Overrides ImmutableInvalidationInterface:: |
|
ImmutableInvalidationBase:: |
public | function |
Return the string expression of the invalidation. Overrides ImmutableInvalidationInterface:: |
1 |
InvalidationBase:: |
public static | function |
Creates an instance of the plugin. Overrides ContainerFactoryPluginInterface:: |
|
InvalidationBase:: |
public | function |
Delete a purger specific property. Overrides InvalidationInterface:: |
|
InvalidationBase:: |
public | function |
Get the instance ID. Overrides InvalidationInterface:: |
|
InvalidationBase:: |
public | function |
Remove a state context from the object because the purger no longer exists. Overrides InvalidationInterface:: |
|
InvalidationBase:: |
public | function |
Set a purger specific property. Overrides InvalidationInterface:: |
|
InvalidationBase:: |
public | function |
Set the state of the invalidation. Overrides InvalidationInterface:: |
|
InvalidationBase:: |
public | function |
Set (or reset) state context to the purger instance next in line. Overrides InvalidationInterface:: |
|
InvalidationBase:: |
public | function |
Constructs \Drupal\purge\Plugin\Purge\Invalidation\InvalidationBase. Overrides PluginBase:: |
|
InvStatesInterface:: |
constant | The invalidation failed and will be offered again later. | ||
InvStatesInterface:: |
constant | Invalidation is new and no processing has been attempted on it yet. | ||
InvStatesInterface:: |
constant | The type of invalidation isn't supported and will be offered again later. | ||
InvStatesInterface:: |
constant | The invalidation is processing. | ||
InvStatesInterface:: |
constant | The invalidation succeeded. | ||
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
TagInvalidation:: |
public | function |
Validate the expression given to the invalidation during instantiation. Overrides InvalidationBase:: |