public function FacetsSummary::removeProcessor in Facets 8
Removes a processor for this facet.
Parameters
string $processor_id: The plugin id of the processor.
Overrides FacetsSummaryInterface::removeProcessor
File
- modules/
facets_summary/ src/ Entity/ FacetsSummary.php, line 276
Class
- FacetsSummary
- Defines the facet summary entity.
Namespace
Drupal\facets_summary\EntityCode
public function removeProcessor($processor_id) {
unset($this->processor_configs[$processor_id]);
}