Monatsvorlage kopieren
This commit is contained in:
parent
42f14e9d8d
commit
9fcbf62016
2 changed files with 36 additions and 0 deletions
|
@ -29,6 +29,30 @@ class DataBase:
|
||||||
print "latest uid for %s is: %i" % (type, j)
|
print "latest uid for %s is: %i" % (type, j)
|
||||||
return j
|
return j
|
||||||
|
|
||||||
|
def prepare_new_month(self):
|
||||||
|
#TODO Monatsvorlage rekursiv kopieren
|
||||||
|
# IDs der Kategorien aus config
|
||||||
|
next_month = "Februar"
|
||||||
|
parentid = 34
|
||||||
|
doktype = 254
|
||||||
|
perms_user = 31
|
||||||
|
perms_group = 27
|
||||||
|
hidden = 1
|
||||||
|
tx_rgmenu_special = 5
|
||||||
|
tstamp = str(int(mktime(datetime.now().timetuple())))
|
||||||
|
sqlqueue="INSERT INTO `pages` (`pid`, `title`, `doktype`, `tstamp`, `perms_user`, `perms_group`, `hidden`, `tx_rgmenu_special`) \
|
||||||
|
VALUES (" \
|
||||||
|
+ "'" + parentid + "'" \
|
||||||
|
+ "'" + next_month + "'" \
|
||||||
|
+ "'" + doktype + "'" \
|
||||||
|
+ "'" + tstamp + "'" \
|
||||||
|
+ "'" + perms_user + "'" \
|
||||||
|
+ "'" + perms_group + "'" \
|
||||||
|
+ "'" + hidden + "'" \
|
||||||
|
+ "'" + tx_rgmenu_special + "'" \
|
||||||
|
+ "');"
|
||||||
|
c.execute(sqlqueue)
|
||||||
|
|
||||||
def prepare_event(self):
|
def prepare_event(self):
|
||||||
'''hiermit wird eine neue Veranstaltung in passender Form
|
'''hiermit wird eine neue Veranstaltung in passender Form
|
||||||
fuer die VCE Extension vorbereitet'''
|
fuer die VCE Extension vorbereitet'''
|
||||||
|
|
12
xml2typo3/typo3_einstellungen.conf
Normal file
12
xml2typo3/typo3_einstellungen.conf
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[Kategorien]
|
||||||
|
## IDs der Kategorienvorlage
|
||||||
|
Monatsvorlage = 58
|
||||||
|
Live = 67
|
||||||
|
Sonstiges = 66
|
||||||
|
Lesungen = 65
|
||||||
|
Bar = 64
|
||||||
|
Sport = 63
|
||||||
|
Familie = 61
|
||||||
|
Party = 60
|
||||||
|
Kino = 59
|
||||||
|
|
Loading…
Reference in a new issue