search_core/Documentation/source/configuration/dataProcessing/RemoveProcessor.rst
Daniel Siepmann 4756da5c5d
TASK: Update / cleanup documentation
Code and docs have diverged a bit. We therefore need to update them.
2018-03-08 11:35:50 +01:00

573 B

Codappix\SearchCore\DataProcessing\RemoveProcessor

Will remove fields from record.

Possible Options:

fields

Comma separated list of fields to remove from record.

Example:

plugin.tx_searchcore.settings.indexing.tt_content.dataProcessing {
    1 = Codappix\SearchCore\DataProcessing\RemoveProcessor
    1 {
        fields = description
    }
    2 = Codappix\SearchCore\DataProcessing\RemoveProcessor
    2 {
        fields = description, another_field
    }
}