public function UnsavedIndexConfiguration::getProcessors in Search API 8
Retrieves this index's processors.
Return value
\Drupal\search_api\Processor\ProcessorInterface[] An array of all enabled processors for this index.
Overrides IndexInterface::getProcessors
File
- src/
UnsavedIndexConfiguration.php, line 365
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function getProcessors() {
return $this->entity
->getProcessors();
}