Hallo zusammen,
ich möchte gerne ein Projekt für TYPO3 CMS 6.0 vorbereiten und stoße gerade mit
Powermail und tt_news an meine Grenzen.
Bisher wurden die News mit der Erweiterung news_feedit eingetragen jetzt soll
dafür Powermail zum Einsatz kommen. Wie in der Doku (am Bespiel von tt_address)
werden die Daten bereits in die Tabelle tt_news eingetragen.
Jedoch stimmt bisher noch nicht die pid und das Datum wird noch nicht korrekt
in die Tabelle tt_news eingetragen. Kann mir jemand dazu einen Tipp geben.
Im Voraus besten Dank!
Hier ist das bisherige TS:
plugin.tx_powermail.settings.setup {
# Save values to any table (example for tt_adress)
dbEntry {
# enable or disable db entry for tt_address
tt_news._enable = TEXT
tt_news._enable.value = 1
# write only if field email is not yet filled with current value
# (update: update values of existing entry)
# (none: no entry if field is filled)
# (disable: always add values don't care about existing values)
##tt_address._ifUnique.email = update
# add mm relation to uid 2 of tt_address_group (via mm table)
tt_news._mm = COA
tt_news._mm.10 = COA
# 1 is always the mm table
tt_news._mm.10.1 = TEXT
tt_news._mm.10.1.value = tt_news_cat_mm
# 2 is always the second table (e.g. categories table)
tt_news._mm.10.2 = TEXT
tt_news._mm.10.2.value = tt_cat_group
# 3 is always the uid of a data record of the second table to get a relation to
this (in this case uid 1 of tt_address_group)
tt_news._mm.10.3 = TEXT
tt_news._mm.10.3.value = 1
# fill table "tt_news" with field "pid" with the current pid (e.g. 12)
tt_news.pid = TEXT
tt_news.pid.value = 9
# fill table "tt_news" with field "tstamp" with the current time as timestamp
(like 123456789)
tt_news.tstamp = TEXT
tt_news.tstamp.data = date:U
# fill table "tt_news" with field "starttime" with the current formatted time (like
"Date: 20.01.2013")
tt_news.starttime = TEXT
tt_news.starttime.data = date:U
tt_news.starttime.strftime = Date: %d.%m.%Y
# fill table "tt_news" with field "title" with the value from powermail
{news_titel}
tt_news.title = TEXT
tt_news.title.field = news_titel
# fill table "tt_news" with field "short" with the value from powermail
{news_kurzbeschreibung}
tt_news.short = TEXT
tt_news.short.field = news_kurzbeschreibung
# fill table "tt_news" with field "bodytext" with the value from powermail
{newsbeschreibung}
tt_news.bodytext = TEXT
tt_news.bodytext.field = newsbeschreibung
# fill table "tt_news" with field "datetime" with the value from powermail
{newsdatum}
tt_news.datetime = TEXT
tt_news.datetime.value = newsdatum
}
}
_______________________________________________
TYPO3-german mailing list
TYPO3-german@lists.typo3.org
http://lists.typo3.org/cgi-bin/mailman/listinfo/typo3-german