mamounalsmaiel/flux-kesearch-indexer

There is no license information available for the latest version (3.0.1) of this package.

KeSearch Indexer for Flux Elements

Installs: 2 614

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 3

Open Issues: 2

Type:typo3-cms-extension

3.0.1 2023-03-27 20:52 UTC

This package is auto-updated.

Last update: 2024-03-27 23:28:11 UTC


README

KeSearch Indexer for Flux Elements

This extension extends the two standard ke_search indexers (pages and content records) so that flux elements can be indexed. All you need to do is add the CType of your element (extensionname_templatename) to the "Content element types to be indexed" field in your Indexer Configuration.

Configuration

If you want to index certain fields, you can add the following configuration to your typoscript. If you don't, the indexer indexes all fields (not recommended).

plugin.tx_flux_kesearch_indexer{
  config{
    elements{
      yourElement1{
        fields = fieldName1,fieldName2,fieldName3,...
      }
      yourElement2{
        fields = fieldName1,fieldName2,fieldName3,...
      }
    }
  }
}