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

Revision 6190, 1.4 KB checked in by acoutinho, 12 years ago (diff)

Ticket #2736 - Inconsistencia com edicao de eventos e pesquisa de eventos

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