source: sandbox/2.4.2-expresso1/prototype/config/schedulable.ini @ 6968

Revision 6968, 1.6 KB checked in by acoutinho, 12 years ago (diff)

Ticket #2966 - Criado suporte a historico em atividades

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
27encodeUpdateSchedulable = modules/calendar/interceptors/DBMapping.php
28updateEvent = modules/calendar/interceptors/Notifications.php
29
30[after.update]
31putEvent = modules/calendar/interceptors/DBMapping.php
32createHistoric = modules/calendar/interceptors/DBMapping.php
33
34[after.read]
35deepnessReadEvent = modules/calendar/interceptors/DBMapping.php
36
37[before.delete]
38deleteSchedulable = modules/calendar/interceptors/DBMapping.php
39deleteEvent = modules/calendar/interceptors/Notifications.php
40
41[PostgreSQL.mapping]
42id = id
43uid = cal_uid
44type = type_id
45startTime = dtstart
46summary = summary
47description = description
48endTime = dtend
49location = location
50allDay = allday
51transparent = transp
52class = class_id
53;repeat = repeat
54rangeStart = range_start
55rangeEnd = range_end
56lastUpdate = last_update
57dtstamp = dtstamp
58sequence = sequence
59timezone = tzid
60priority = priority
61percentage = percentage
62status = status
63due = due
Note: See TracBrowser for help on using the repository browser.