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

Maintainers

Package info

github.com/MamounAlsmaiel/flux_kesearch_indexer

Type:typo3-cms-extension

pkg:composer/mamounalsmaiel/flux-kesearch-indexer

Statistics

Installs: 2 934

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 2

3.0.1 2023-03-27 20:52 UTC

This package is auto-updated.

Last update: 2026-02-28 03:52:33 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,...
      }
    }
  }
}