mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-22 14:56:12 +01:00
Merge pull request #79 from Codappix/feature/move-to-constants
TASK: Move additionalWhereClause to constants
This commit is contained in:
commit
83d4ee6679
3 changed files with 8 additions and 4 deletions
|
@ -26,6 +26,9 @@ env:
|
||||||
- typo3DatabasePassword=""
|
- typo3DatabasePassword=""
|
||||||
- TYPO3_VERSION="~7.6"
|
- TYPO3_VERSION="~7.6"
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
|
||||||
services:
|
services:
|
||||||
- mysql
|
- mysql
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,10 @@ plugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
indexing {
|
indexing {
|
||||||
|
tt_content {
|
||||||
|
additionalWhereClause = tt_content.CType NOT IN ('gridelements_pi1', 'list', 'div', 'menu', 'shortcut', 'search', 'login') AND tt_content.bodytext != ''
|
||||||
|
}
|
||||||
|
|
||||||
pages {
|
pages {
|
||||||
additionalWhereClause = pages.doktype NOT IN (3, 199, 6, 254, 255)
|
additionalWhereClause = pages.doktype NOT IN (3, 199, 6, 254, 255)
|
||||||
abstractFields = abstract, description, bodytext
|
abstractFields = abstract, description, bodytext
|
||||||
|
|
|
@ -12,10 +12,7 @@ plugin {
|
||||||
# Not for direct indexing therefore no indexer.
|
# Not for direct indexing therefore no indexer.
|
||||||
# Used to configure tt_content fetching while indexing pages
|
# Used to configure tt_content fetching while indexing pages
|
||||||
tt_content {
|
tt_content {
|
||||||
additionalWhereClause (
|
additionalWhereClause = {$plugin.tx_searchcore.settings.indexing.tt_content.additionalWhereClause}
|
||||||
tt_content.CType NOT IN ('gridelements_pi1', 'list', 'div', 'menu', 'shortcut', 'search', 'login')
|
|
||||||
AND tt_content.bodytext != ''
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pages {
|
pages {
|
||||||
|
|
Loading…
Reference in a new issue