-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathroundcube_caldav_display.php
220 lines (187 loc) · 10.7 KB
/
roundcube_caldav_display.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<div id='loading'>
<p><?php echo $this->gettext("loading") ?></p>
<i class="fas fa-circle-notch fa-spin"></i>
</div>
<div id='saving_and_sending' style="display: none">
<p><?php echo $this->gettext("saving_and_sending") ?></p>
<i class="fas fa-circle-notch fa-spin"></i>
</div>
<template id="display" style="display: none">
<div class="content_invitation">
<div class="invitation">
</div>
<div class="is_on_server">
</div>
<div class="content_event">
<div class="date_container">
<div class="date_event">
<div class="icon_date same_date alone">
<div class="m"></div>
<div class="D"></div>
<div class="d"></div>
<div class="h"></div>
</div>
<div class="icon_date different_date start">
<div class="m"></div>
<div class="D"></div>
<div class="d"></div>
<div class="h"></div>
</div>
<div class="arrow-right different_date"></div>
<div class="icon_date different_date end">
<div class="m"></div>
<div class="D"></div>
<div class="d"></div>
<div class="h"></div>
</div>
</div>
<div class="arrow-right new " style="display: none"></div>
<div class="arrow-down new " style="display: none"></div>
<div class="new_date_event new" style="display: none">
<div class="icon_date same_date alone">
<div class="m"></div>
<div class="D"></div>
<div class="d"></div>
<div class="h"></div>
</div>
<div class="icon_date different_date start">
<div class="m"></div>
<div class="D"></div>
<div class="d"></div>
<div class="h"></div>
</div>
<div class="arrow-right different_date"></div>
<div class="icon_date different_date end">
<div class="m"></div>
<div class="D"></div>
<div class="d"></div>
<div class="h"></div>
</div>
</div>
</div>
<div class="info_ics location_description">
<p class="location" style="display: none"><b><?php echo $this->gettext("location") ?></b></p>
<p class="if_new_location new" style="display: none" isOrganizer="<b><?php echo $this->gettext("new_location_proposal") ?></b>">
<b><?php echo $this->gettext("new_location_modification") ?></b></p>
<p class="description" style="display: none"><b><?php echo $this->gettext("description") ?></b></p>
<p class="if_new_description new" style="display: none" isOrganizer="<b><?php echo $this->gettext("new_description_proposal") ?></b>">
<b><?php echo $this->gettext("new_description_modification") ?></b></p>
</div>
<div class="info_ics repeated ">
<p><b><?php echo $this->gettext("repeated_event"); ?></b></p>
</div>
<div class="info_ics attendees">
<b><?php echo $this->gettext("attendee"); ?></b><br><br>
<div class='attendee'>
</div>
<div class="reply_all"></div>
</div>
<div class="info_caldav_server">
<div class="close_meeting previous">
<p><b><?php echo $this->gettext('previous_meeting') ?></b></p>
</div>
<div class="meeting_collision">
<p><?php echo $this->gettext('same_hour_meeting') ?></p>
</div>
<div class="close_meeting next">
<p><b><?php echo $this->gettext('next_meeting') ?></b></p>
</div>
</div>
</div>
<div class="comment" style="display: none"></div>
<div class="if_rescheduled new" style="display:none">
<span class="msg_date" style="display:none"></span>
<span class="msg_location" style="display:none"></span>
</div>
<div class="if_modification new" style="display: none"></div>
<div class="action_button">
<form method="post" name="chosen_cal">
<label class="calendar_choice">
<select class="choose_calendar_to_add_event custom-select">
</select>
</label>
</form>
<div class="dialog-form" style="display: none" title="<?php echo $this->gettext('reschedule_meeting') ?>">
<form>
<fieldset>
<label for="location_input"><?php echo $this->gettext("new_location") ?></label>
<input type="text" name="location" class="location_input">
<label class="label_popup"
for="date_start"><?php echo $this->gettext("new_date_start") ?></label>
<input class="date_start" type="date">
<label class="label_popup"
for="time_start"><?php echo $this->gettext("new_time_start") ?></label>
<input class="time_start" type="time">
<label class="label_popup" for="date_end"><?php echo $this->gettext("new_date_end") ?></label>
<input class="date_end" type="date">
<label class="label_popup" for="time_end"><?php echo $this->gettext("new_time_end") ?></label>
<input class="time_end" type="time">
<label class="label_popup"
for="message_input"><?php echo $this->gettext("comment_to_send") ?></label>
<textarea name="message" class="message_input"></textarea>
</fieldset>
</form>
</div>
<button class="action_buttons open_dialog btn btn-secondary" data-needs-popin style="display: none"
status="TENTATIVE"
method="COUNTER"
data-label-organizer=" <?php echo $this->gettext('reschedule_meeting') ?>">
<?php echo $this->gettext('ask_for_reschedule') ?>
</button>
<button class="action_buttons confirm_button btn btn-secondary" data-needs-popin style="display: none"
status="CONFIRMED"
method="REPLY" data-label-disabled="<?php echo $this->gettext('confirmed') ?>"
data-label-enabled="<?php echo $this->gettext('confirm') ?>">
</button>
<button class="action_buttons tentative_button btn btn-secondary" data-needs-popin style="display: none"
status="TENTATIVE"
method="REPLY" data-label-disabled="<?php echo $this->gettext('tentatived') ?>"
data-label-enabled="<?php echo $this->gettext('tentative') ?>">
</button>
<button class="action_buttons decline_button btn btn-secondary" data-needs-popin style="display: none"
status="CANCELLED"
method="REPLY" data-label-disabled="<?php echo $this->gettext('declined') ?>"
data-label-enabled="<?php echo $this->gettext('decline') ?>">
</button>
<button class="action_buttons update_button btn btn-secondary" style="display: none" status="CANCELLED"
method="EVENT_CANCELLED" data-label-disabled="<?php echo $this->gettext('updated_event') ?>"
data-label-enabled="<?php echo $this->gettext('update_event') ?>">
</button>
<button class="action_buttons update_button_organizer btn btn-secondary" style="display: none"
status="CONFIRMED"
method="UPDATED" data-label-disabled="<?php echo $this->gettext('updated_event') ?>"
data-label-enabled="<?php echo $this->gettext('update_event') ?>">
</button>
<button class="action_buttons confirm_button_organizer btn btn-secondary" data-needs-popin
style="display: none" status="CONFIRMED"
method="REQUEST" data-label-disabled="<?php echo $this->gettext('confirmed_organizer') ?>"
data-label-enabled="<?php echo $this->gettext('confirm_modification') ?>">
</button>
<button class="action_buttons decline_button_organizer btn btn-secondary" data-needs-popin
style="display: none" status="DECLINED"
method="DECLINECOUNTER" data-label-disabled="<?php echo $this->gettext('declined_organizer') ?>"
data-label-enabled="<?php echo $this->gettext('decline_modification') ?>">
</button>
<button class="action_buttons cancel_button_organizer btn btn-secondary" data-needs-popin
style="display: none" status="CANCELLED" method="CANCEL"
data-label-disabled="<?php echo $this->gettext('cancelled_event') ?>"
data-label-enabled="<?php echo $this->gettext('cancel_event') ?>">
</button>
<button class="action_buttons cancel_recurrent_button_organizer btn btn-secondary" data-needs-popin
style="display: none" status="CANCELLED_ONE_EVENT" method="REQUEST"
data-label-disabled="<?php echo $this->gettext('cancelled_instance') ?>"
data-label-enabled="<?php echo $this->gettext('cancel_instance') ?>">
</button>
<button class="action_buttons cancel_button btn btn-secondary" data-needs-popin style="display: none"
status="CANCELLED"
method="CANCEL" data-label-disabled="<?php echo $this->gettext('cancelled_event_on_server') ?>"
data-label-enabled=" <?php echo $this->gettext('cancel_event_on_server') ?>">
</button>
<div class="message-dialog" title="<?php echo $this->gettext('send_comment_with_invitation') ?>"
style="display: none">
<label for="message_input"><?php echo $this->gettext("comment_to_send") ?></label>
<textarea name="message" class="message_input" rows="12"></textarea>
</div>
</div>
</div>
</template>