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

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

Ticket #2966 - Criacao de atividades com suporte a alarmes e anexos

RevLine 
[5399]1service = PostgreSQL
[5437]2PostgreSQL.concept = calendar_object
[5399]3
[5514]4[model.hasMany]
5participants = participant.schedulable
6attachments = schedulableToAttachment.schedulable
[6945]7taskToActivity = taskToActivity.activity
[5514]8       
9[model.hasOne]
10repeat = repeat.schedulable
[5399]11
12[before.create]
13encodeCreateSchedulable = modules/calendar/interceptors/DBMapping.php
14
15[after.create]
16createCalendarToSchedulable = modules/calendar/interceptors/DBMapping.php
[6945]17;createTasksToActivity = modules/calendar/interceptors/DBMapping.php
[5399]18
19[before.find]
[5437]20findSchedulable = modules/calendar/interceptors/DBMapping.php
[6945]21findTask = modules/calendar/interceptors/DBMapping.php
[5399]22
23[after.find]
24deepnessFindEvent = modules/calendar/interceptors/DBMapping.php
25
26[before.update]
27updateCalendar = modules/calendar/interceptors/DBMapping.php
[6190]28encodeUpdateSchedulable = modules/calendar/interceptors/DBMapping.php
[5399]29updateEvent = modules/calendar/interceptors/Notifications.php
30
31[after.update]
32putEvent = 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
[5437]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
[5715]53;repeat = repeat
[5437]54rangeStart = range_start
55rangeEnd = range_end
56lastUpdate = last_update
57dtstamp = dtstamp
58sequence = sequence
[6797]59timezone = tzid
60priority = priority
61percentage = percentage
[6876]62status = status
63due = due
Note: See TracBrowser for help on using the repository browser.