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 to check: self::STAGE_PRE_QUERY, self::STAGE_POST_QUERY or self::STAGE_BUILD.

Return value

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

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

File

src/Processor/ProcessorInterface.php, line 71

Class

ProcessorInterface
Describes a processor.

Namespace

Drupal\facets\Processor

Code

public function supportsStage($stage_identifier);