class WildcardUrlInvalidation in Purge 8.3
Describes wildcard URL based invalidation, e.g. "http://site.com/node/*".
Plugin annotation
@PurgeInvalidation(
id = "wildcardurl",
label = @Translation("Url wildcard"),
description = @Translation("Invalidates by URL."),
examples = {"http://site.com/node/*"},
expression_required = TRUE,
expression_can_be_empty = FALSE
)
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\UrlInvalidation implements InvalidationInterface
- class \Drupal\purge\Plugin\Purge\Invalidation\WildcardUrlInvalidation implements InvalidationInterface
- class \Drupal\purge\Plugin\Purge\Invalidation\UrlInvalidation 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 WildcardUrlInvalidation
File
- src/
Plugin/ Purge/ Invalidation/ WildcardUrlInvalidation.php, line 19
Namespace
Drupal\purge\Plugin\Purge\InvalidationView source
class WildcardUrlInvalidation extends UrlInvalidation implements InvalidationInterface {
/**
* {@inheritdoc}
*/
public function validateExpression($wildcard_check = TRUE) {
$url = parent::validateExpression(FALSE);
if (strpos($url, '*') === FALSE) {
throw new InvalidExpressionException('Wildcard invalidations should contain an asterisk.');
}
}
}
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 | 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. | |
UrlInvalidation:: |
protected | property |
Url object (absolute) or string describing Uri of what needs invalidation. Overrides ImmutableInvalidationBase:: |
|
UrlInvalidation:: |
protected | property | The (absolute) URL object that this invalidation object describes. | |
UrlInvalidation:: |
public | function | Get the URL object. | |
WildcardUrlInvalidation:: |
public | function |
Validate the expression given to the invalidation during instantiation. Overrides UrlInvalidation:: |