mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-23 12:36:11 +01:00
554 B
554 B
Develop a new DataProcessor
Make sure you understood concepts_dataprocessing
.
Each DataProcessor has to be a single class which implements
Codappix\SearchCore\DataProcessing\ProcessorInterface
.
Make sure you support both, Frontend and Backend, as processors can
be called during searching and indexing. Therefore do not rely on e.g.
TSFE
, make sure dependencies are met and your code will
work in both environments.
Dependency Injection is working for custom DataProcessors.