You are here

public function ProcessorInterface::supportsStage in Facets 8

Same name in this branch
  1. 8 src/Processor/ProcessorInterface.php \Drupal\facets\Processor\ProcessorInterface::supportsStage()
  2. 8 modules/facets_summary/src/Processor/ProcessorInterface.php \Drupal\facets_summary\Processor\ProcessorInterface::supportsStage()

Checks whether this processor implements a particular stage.

Parameters

string $stage_identifier: The stage that can be supported by the processor, check the constants defined in this class for a list of options.

Return value

bool TRUE if the processor runs on a particular stage; FALSE otherwise.

1 method overrides ProcessorInterface::supportsStage()
ProcessorPluginBase::supportsStage in modules/facets_summary/src/Processor/ProcessorPluginBase.php
Checks whether this processor implements a particular stage.

File

modules/facets_summary/src/Processor/ProcessorInterface.php, line 67

Class

ProcessorInterface
Describes a processor.

Namespace

Drupal\facets_summary\Processor

Code

public function supportsStage($stage_identifier);