2016-12-15 17:59:13 +01:00
|
|
|
.. highlight:: typoscript
|
|
|
|
|
|
|
|
.. _configuration:
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
=============
|
|
|
|
|
2018-02-22 20:49:25 +01:00
|
|
|
Installation wide configuration is handled inside of the extension manager. Just check out the
|
|
|
|
options there, they all have labels.
|
|
|
|
|
2018-03-08 08:17:41 +01:00
|
|
|
Everything else is configured through TypoScript. If you overwrite them through `setup` make sure to
|
|
|
|
keep them in the `module` area as they will be accessed from backend mode of TYPO3 for indexing. Do
|
|
|
|
so by placing the following line at the end::
|
2016-12-15 17:59:13 +01:00
|
|
|
|
|
|
|
module.tx_searchcore < plugin.tx_searchcore
|
|
|
|
|
|
|
|
.. todo::
|
|
|
|
|
|
|
|
We will use references inside the extension to make the above unnecessary in the future.
|
|
|
|
|
2016-12-16 12:55:23 +01:00
|
|
|
The structure is following TYPO3 Extbase conventions. All settings are placed inside of::
|
2016-12-15 17:59:13 +01:00
|
|
|
|
|
|
|
plugin.tx_searchcore.settings
|
|
|
|
|
2017-01-26 14:37:17 +01:00
|
|
|
Here is the example default configuration that's provided through static include:
|
|
|
|
|
|
|
|
.. literalinclude:: ../../Configuration/TypoScript/constants.txt
|
|
|
|
:language: typoscript
|
|
|
|
:caption: Static TypoScript Constants
|
2016-12-15 17:59:13 +01:00
|
|
|
|
|
|
|
.. literalinclude:: ../../Configuration/TypoScript/setup.txt
|
|
|
|
:language: typoscript
|
|
|
|
:caption: Static TypoScript Setup
|
|
|
|
|
|
|
|
.. _configuration_options:
|
|
|
|
|
|
|
|
Options
|
|
|
|
-------
|
|
|
|
|
2017-10-14 13:02:48 +02:00
|
|
|
The following sections contains the different options grouped by their applied area, e.g. for
|
|
|
|
:ref:`connections` and :ref:`indexer`: ``plugin.tx_searchcore.settings.connection`` or
|
|
|
|
``plugin.tx_searchcore.settings.indexing``:
|
2016-12-16 12:55:23 +01:00
|
|
|
|
2017-10-14 13:02:48 +02:00
|
|
|
.. toctree::
|
|
|
|
:maxdepth: 1
|
|
|
|
:glob:
|
2016-12-15 17:59:13 +01:00
|
|
|
|
2017-10-14 13:02:48 +02:00
|
|
|
configuration/connections
|
|
|
|
configuration/indexing
|
|
|
|
configuration/searching
|