-
Notifications
You must be signed in to change notification settings - Fork 11
/
ext_typoscript_setup.txt
executable file
·61 lines (44 loc) · 1.66 KB
/
ext_typoscript_setup.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
plugin.dd_googlesitemap_dmf {
# selector for your extension (same as GET selector=news)
news {
# uid is NECESSARY in the sqlSelect field
sqlMainTable = tx_news_domain_model_news
# if catList depends of column of sqlMainTable (Column name like city or country)
sqlCatColumn =
# if catList depends on sqlMMTable (Only works if uid_foreign and uid_local is in use)
sqlMMTable = tx_news_domain_model_news_category_mm
# order of the XML output
sqlOrder = tstamp DESC
# last modified timestamp column (inside of sqlMainTable)
sqlLastUpdated = tstamp
# sql column of the title
sqlTitle = title
# sql column of keywords
sqlKeywords = keywords
# frequency
frequency =
# typolink additionalParam (must belong to the uid of the sqlMainTable)
linkParams = tx_news_pi1[news]
# typolink additionalParams
# Can be used to specify controller and action. This must be code ready to insert after the last parameter.
# For example use this:
# additionalParams = &tx_news_pi1[controller]=News&tx_news_pi1[action]=detail
additionalParams =
# csv Pid's of the stored elements. Rootline is not checked with this setting
pidList = 1,2,3
# detail page id where the link should point at
singlePid = 15
# filter by category which is inside of the main table -> sqlCatColumn
catList =
# csv filter by mm related table -> sqlMMTable
catMMList =
# disable the language check through GLOBALS['TSFE']->sys_language_uid
disableLanguageCheck = 0
}
# sitemap eID urls for the crawler
crawler {
1 = http://beispiel.de?eID=dd_googlesitemap
# more than one sitemap
# 2 = http://beispiel.de?eID=dd_googlesitemap&more-configuration
}
}