source: trunk/prototype/config/schedulable.ini @ 7590

Revision 7590, 1.7 KB checked in by douglas, 11 years ago (diff)

Ticket #3209 - Integrar módulo de sincronização Z-push ao Expresso

Line 
1service = PostgreSQL
2PostgreSQL.concept = calendar_object
3
4[model.hasMany]
5participants = participant.schedulable
6attachments = schedulableToAttachment.schedulable
7taskToActivity = taskToActivity.activity
8       
9[model.hasOne]
10repeat = repeat.schedulable
11
12[before.create]
13encodeCreateSchedulable = modules/calendar/interceptors/DBMapping.php
14
15[after.create]
16createCalendarToSchedulable = modules/calendar/interceptors/DBMapping.php
17
18[before.find]
19findSchedulable = modules/calendar/interceptors/DBMapping.php
20findTask = modules/calendar/interceptors/DBMapping.php
21
22[after.find]
23deepnessFindEvent = modules/calendar/interceptors/DBMapping.php
24
25[before.update]
26updateCalendar = modules/calendar/interceptors/DBMapping.php
27setLastUpdateSchedulable = modules/calendar/interceptors/DBMapping.php
28encodeUpdateSchedulable = modules/calendar/interceptors/DBMapping.php
29updateEvent = modules/calendar/interceptors/Notifications.php
30
31[after.update]
32putEvent = modules/calendar/interceptors/DBMapping.php
33createHistoric = modules/calendar/interceptors/DBMapping.php
34
35[after.read]
36deepnessReadEvent = modules/calendar/interceptors/DBMapping.php
37
38[before.delete]
39deleteSchedulable = modules/calendar/interceptors/DBMapping.php
40deleteEvent = modules/calendar/interceptors/Notifications.php
41
42[PostgreSQL.mapping]
43id = id
44uid = cal_uid
45type = type_id
46startTime = dtstart
47summary = summary
48description = description
49endTime = dtend
50location = location
51allDay = allday
52transparent = transp
53class = class_id
54;repeat = repeat
55rangeStart = range_start
56rangeEnd = range_end
57lastUpdate = last_update
58dtstamp = dtstamp
59sequence = sequence
60timezone = tzid
61priority = priority
62percentage = percentage
63status = status
64due = due
Note: See TracBrowser for help on using the repository browser.