public function Facet::getProcessorConfigs in Facets 8
Retrieves this facets's processor configs.
Return value
array An array of processors and their configs.
Overrides FacetInterface::getProcessorConfigs
3 calls to Facet::getProcessorConfigs()
- Facet::getProcessors in src/
Entity/ Facet.php - Returns an array of processors with their configuration.
- Facet::getProcessorsByStage in src/
Entity/ Facet.php - Loads this facets processors for a specific stage.
- Facet::loadProcessors in src/
Entity/ Facet.php - Retrieves all processors supported by this facet.
File
- src/
Entity/ Facet.php, line 449
Class
- Facet
- Defines the facet configuration entity.
Namespace
Drupal\facets\EntityCode
public function getProcessorConfigs() {
return !empty($this->processor_configs) ? $this->processor_configs : [];
}