Angel Fernando Quiroz Campos
3f81b09da2
Calendar: Fix filter for events with careers/promotion - refs BT#19497
3 years ago
Angel Fernando Quiroz Campos
aea292da3e
Calendar: Add allow_careers_in_global_agenda conf option - refs BT#19497
...
Allow career/promotions in global calendar. Require DB changes:
```sql
ALTER TABLE sys_calendar ADD COLUMN career_id INT DEFAULT 0;
ALTER TABLE sys_calendar ADD COLUMN promotion_id INT DEFAULT 0;
```
3 years ago
Angel Fernando Quiroz Campos
2c9b120182
Calendar: Fix reset session filter - refs BT#19497
3 years ago
Angel Fernando Quiroz Campos
caef076dcf
Plugin: Zoom: Allow webinars - refs BT#19479
3 years ago
Angel Fernando Quiroz Campos
57c47838ce
Calendar: Dont' show session without date limits when personal_calendar_show_sessions_occupation is enabled - refs BT#19393
3 years ago
Angel Fernando Quiroz Campos
4d90c858d1
Agenda: Allow set reminder from announcement - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
f8d11e9dc0
Agenda: Fix event type for sessions with personal_calendar_show_sessions_occupation - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
a4b5cb692d
Agenda: Fix load reminders for session event - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
5d5ced6db2
Agenda: Fix update reminders in course event - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
82b22e9e89
Agenda: Validate attachment to update in course event - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
67df1a367f
Calendar: Fix edit reminders already sent - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
76a91edbc5
Minor: Format code - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
f549c8a807
Calendar: Show reminders in calendar - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
231f5ce964
Calendar: Allow edit reminders - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
ad71f6d787
Add agenda_reminders configuration setting - refs BT#19392
...
Enable reminders for agenda events. Requires database changes:
```sql
CREATE TABLE agenda_reminder (id BIGINT AUTO_INCREMENT NOT NULL, type VARCHAR(255) NOT NULL, event_id INT NOT NULL, date_interval VARCHAR(255) NOT NULL COMMENT '(DC2Type:dateinterval)', sent TINYINT(1) NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB;
```
4 years ago
Angel Fernando Quiroz Campos
c52e1f1760
Agenda: Add method to get invitees for personal event - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
985114e583
Agenda: Load session as events in JS calendar only - refs BT#19392
4 years ago
Angel Fernando Quiroz Campos
aa82a95923
Minor: Format code
4 years ago
NicoDucou
4ecabee926
Agenda: Social: Fix error in personal data page due to new option in agenda activated without the option -refs BT19356 BT#19393
4 years ago
Angel Fernando Quiroz Campos
6820310191
Calendar: Allow add event as announcement in course only - refs BT#19390
4 years ago
Angel Fernando Quiroz Campos
e822cd4388
Minor: initialize variable and format code
4 years ago
NicoDucou
590e983f09
Calendar: Fixing entity error when not activating Collaborative event invitation -refs BT19475 BT19390
4 years ago
Angel Fernando Quiroz Campos
1994933258
Minor - Coding standards - refs BT#19390
4 years ago
Angel Fernando Quiroz Campos
1592afbd46
Calendar: save collective properties when add/edit event - refs BT#19390
4 years ago
Angel Fernando Quiroz Campos
698aa0f04f
Calendar: Fix form to add collective event - refs BT#19390
4 years ago
Angel Fernando Quiroz Campos
75495e1454
Minor: coding standards
4 years ago
Angel Fernando Quiroz Campos
5669fa9c69
Add agenda_collective_invitations conf setting - refs BT#19390
...
It allows to send invitations to friends for an agenda event. Requires DB changes:
4 years ago
Angel Fernando Quiroz Campos
aaa949774b
Calendar: fix date comparaison when personal_calendar_show_sessions_occupation is enabled - refs BT#19393
4 years ago
Angel Fernando Quiroz Campos
363db67320
Minor: coding standards - refs BT#19393
4 years ago
Angel Fernando Quiroz Campos
fec6129173
Add personal_calendar_show_sessions_occupation conf setting - refs BT#19393
...
Display sessions ocuppations in personal agenda
4 years ago
Angel Fernando Quiroz Campos
dad370c16d
Add course setting agenda_share_events_in_sessions - refs BT#19051
4 years ago
Angel Fernando Quiroz Campos
b95312552a
Minor - flint fixes
4 years ago
NicoDucou
c8ebac03f2
Calendar : Fix double timezone difference date update when timezone is different from UTC - refs BT#19129
4 years ago
Julio
9a787d28fa
Agenda: Fix repeat event timezone BT#18980
4 years ago
carlos alvarado
7704137d9f
Agenda: Fix RFC5545 date for ICS format when importing events - refs GH#3735
4 years ago
Julio Montoya
41963f1ddd
Agenda: add remove_xss
4 years ago
Julio Montoya
299382241f
Minor - Fix "Required parameter $type follows optional param"
4 years ago
Julio Montoya
473035f3a2
Add int casting, fix "order by" queries
4 years ago
Julio Montoya
25e79827e2
Minor - format code, validate type
5 years ago
Julio
e093747faa
Minor - flint fixes
5 years ago
NicoDucou
8045806a6c
[agenda] Fix repeated event date timezone error on repeated event - refs BT#18150
5 years ago
Julio Montoya
e96a132f1b
Minor - format code, remove var_dumps
5 years ago
Julio Montoya
f97c998fa4
Agenda: Allow personal agenda for non anons. BT#17761
5 years ago
carlos alvarado
7aba80b1bb
Agenda: Repeated "All day" events show on full day span after first occurence #3394
...
Changed or by ||
5 years ago
carlos alvarado
c11b0256b3
Agenda: Repeated "All day" events show on full day span after first occurence #3394
...
From the second round, allDay changes from true to 1, as compared to the string true, it will not validate the date for its continuation.
Validation against 1 is added directly to compare against numeric value 1 that can be assumed to be true.
The database all_day field in table c_calendar_event is set to 1 correctly.
5 years ago
Julio Montoya
075861cb2c
Admin: add configuration setting my_space_users_items_per_page BT#16343
...
- Add calendar plan from ofaj
5 years ago
Julio Montoya
1fcd9dfb19
Check HRM event permission if is not allowed. BT#16878
6 years ago
Julio Montoya
03a2b5eb2f
Fix delete event session permission BT#16878
6 years ago
Alex Aragón
06c4dc0874
fix agenda files upload
6 years ago
Yannick Warnier
cbd83f4146
Minor - Rename language variable - refs BT#15394 #2801
7 years ago