24 include_once(
'./Services/Calendar/classes/class.ilDate.php');
25 include_once
'./Services/Calendar/classes/class.ilCalendarRecurrenceExclusions.php';
26 include_once
'./Services/Calendar/interfaces/interface.ilCalendarRecurrenceCalculation.php';
38 define(
'IL_CAL_FREQ_DAILY',
'DAILY');
39 define(
'IL_CAL_FREQ_WEEKLY',
'WEEKLY');
40 define(
'IL_CAL_FREQ_MONTHLY',
'MONTHLY');
41 define(
'IL_CAL_FREQ_YEARLY',
'YEARLY');
92 $this->recurrence_id = $a_rec_id;
110 $ilDB = $DIC[
'ilDB'];
112 $query =
"DELETE FROM cal_recurrence_rules " .
113 "WHERE cal_id = " .
$ilDB->quote($a_cal_id,
'integer') .
" ";
126 include_once
'./Services/Calendar/classes/class.ilCalendarEntry.php';
142 if ($entry->isFullday()) {
162 $ical .= (
';BYDAY=' . $this->
getBYDAY());
170 include_once
'./Services/Calendar/classes/class.ilCalendarUserSettings.php';
171 include_once
'./Services/Calendar/classes/class.ilCalendarSettings.php';
174 $ical .= (
';WKST=MO');
176 $ical .= (
';WKST=SU');
226 $this->cal_id = $a_id;
247 $this->recurrence_type = $a_type;
259 return $this->recurrence_type == self::REC_RECURRENCE;
271 $this->freq_type = $a_type;
293 return is_object($this->freq_until_date) ? $this->freq_until_date : null;
304 $this->freq_until_date = $a_date;
316 $this->freq_until_count = $a_count;
340 $this->interval = $a_interval;
351 return $this->interval ? $this->interval : 1;
363 $this->byday = $a_byday;
389 $bydays[] = trim($byday);
391 return $bydays ? $bydays : array();
403 $this->byweekno = $a_byweekno;
417 foreach (explode(
',', $this->
getBYWEEKNO()) as $week_num) {
418 $weeks[] = (int) $week_num;
420 return $weeks ? $weeks : array();
444 $this->bymonth = $a_by;
469 foreach (explode(
',', $this->
getBYMONTH()) as $month_num) {
470 $months[] = (int) $month_num;
472 return $months ? $months : array();
484 $this->bymonthday = $a_by;
508 foreach (explode(
',', $this->
getBYMONTHDAY()) as $month_num) {
509 $months[] = (int) $month_num;
511 return $months ? $months : array();
524 $this->byyearday = $a_by;
549 foreach (explode(
',', $this->
getBYYEARDAY()) as $year_day) {
550 $days[] = (int) $year_day;
552 return $days ? $days : array();
564 $this->bysetpos = $a_by;
589 foreach (explode(
',', $this->
getBYSETPOS()) as $pos) {
590 $positions[] = (int) $pos;
592 return $positions ? $positions : array();
605 $this->weekstart = $a_start;
639 $this->timezone = $a_tz;
683 $ilDB = $DIC[
'ilDB'];
688 $next_id =
$ilDB->nextId(
'cal_recurrence_rules');
690 $query =
"INSERT INTO cal_recurrence_rules (rule_id,cal_id,cal_recurrence,freq_type,freq_until_date,freq_until_count,intervall, " .
691 "byday,byweekno,bymonth,bymonthday,byyearday,bysetpos,weekstart) " .
693 $ilDB->quote($next_id,
'integer') .
", " .
694 $this->db->quote($this->cal_id,
'integer') .
", " .
695 $ilDB->quote(1,
'integer') .
", " .
697 $this->db->quote($until_date,
'timestamp') .
", " .
699 $this->db->quote((
int) $this->
getInterval(),
'integer') .
", " .
700 $this->db->quote((
string) $this->
getBYDAY(),
'text') .
", " .
701 $this->db->quote((
string) $this->
getBYWEEKNO(),
'text') .
", " .
702 $this->db->quote((
string) $this->
getBYMONTH(),
'text') .
", " .
703 $this->db->quote((
string) $this->
getBYMONTHDAY(),
'text') .
", " .
704 $this->db->quote((
string) $this->
getBYYEARDAY(),
'text') .
", " .
705 $this->db->quote((
string) $this->
getBYSETPOS(),
'text') .
", " .
706 $this->db->quote((
string) $this->
getWeekstart(),
'text') .
" " .
709 $this->recurrence_id = $next_id;
723 $ilDB = $DIC[
'ilDB'];
729 $query =
"UPDATE cal_recurrence_rules SET " .
730 "cal_id = " . $this->db->quote($this->cal_id,
'integer') .
", " .
731 "cal_recurrence = 1," .
732 "freq_type = " . $this->db->quote($this->
getFrequenceType(),
'text') .
", " .
733 "freq_until_date = " . $this->db->quote($until_date,
'timestamp') .
", " .
735 "intervall = " . $this->db->quote($this->
getInterval(),
'integer') .
", " .
736 "byday = " . $this->db->quote($this->
getBYDAY(),
'text') .
", " .
737 "byweekno = " . $this->db->quote($this->
getBYWEEKNO(),
'text') .
", " .
738 "bymonth = " . $this->db->quote($this->
getBYMONTH(),
'text') .
", " .
739 "bymonthday = " . $this->db->quote($this->
getBYMONTHDAY(),
'text') .
", " .
740 "byyearday = " . $this->db->quote($this->
getBYYEARDAY(),
'text') .
", " .
741 "bysetpos = " . $this->db->quote($this->
getBYSETPOS(),
'text') .
", " .
742 "weekstart = " . $this->db->quote($this->
getWeekstart(),
'text') .
" " .
743 "WHERE rule_id = " . $this->db->quote($this->recurrence_id,
'integer') .
" ";
754 public function delete()
758 $ilDB = $DIC[
'ilDB'];
760 $query =
"DELETE FROM cal_recurrence_rules " .
761 "WHERE rule_id = " . $this->db->quote($this->recurrence_id,
'integer');
776 $ilDB = $DIC[
'ilDB'];
778 $query =
"SELECT * FROM cal_recurrence_rules " .
779 "WHERE rule_id = " . $this->db->quote($this->recurrence_id,
'integer') .
" ";
782 $this->cal_id = $row->cal_id;
783 $this->recurrence_type = $row->cal_recurrence;
784 $this->freq_type = $row->freq_type;
786 if ($row->freq_until_date != null) {
789 $this->freq_until_count = $row->freq_until_count;
790 $this->interval = $row->intervall;
791 $this->byday = $row->byday;
792 $this->byweekno = $row->byweekno;
793 $this->bymonth = $row->bymonth;
794 $this->bymonthday = $row->bymonthday;
795 $this->byyearday = $row->byyearday;
796 $this->bysetpos = $row->bysetpos;
797 $this->weekstart = $row->week_start;
getBYDAYList()
get BYDAY list
const IL_CAL_FREQ_MONTHLY
Model for a calendar entry.
getEntryId()
Get calendar entry id.
setBYWEEKNO($a_byweekno)
set by day
setFrequenceUntilCount($a_count)
set frequence count
static _getInstanceByUserId($a_user_id)
get singleton instance
getBYMONTHList()
get bymonth list
setFrequenceUntilDate(ilDateTime $a_date=null)
set freq until date
setBYMONTHDAY($a_by)
set by day
getBYYEARDAYList()
get BYYEARDAY list
setFrequenceType($a_type)
set frequence type
setWeekstart($a_start)
set weekstart
getBYMONTHDAYList()
get BYMONTHDAY list
getExclusionDates()
Get exclusion dates.
getFrequenceType()
get freq type
isRecurrence()
is recurrence
setEntryId($a_id)
set cal id
getTimeZone()
get timezone
toICal($a_user_id)
Get ical presentation for calendar recurrence.
foreach($_POST as $key=> $value) $res
static delete($a_cal_id)
Delete exclusion dates of calendar entry.
setInterval($a_interval)
set interval
const IL_CAL_FREQ_DAILY
Model of calendar entry recurrcences.
getBYSETPOSList()
get bysetpos list
getBYWEEKNOList()
get byweekno list
__construct($a_rec_id=0)
Constructor.
getWeekstart()
get weekstart
setBYMONTH($a_by)
set by day
static _delete($a_cal_id)
delete
getFrequenceUntilDate()
get until date
getRecurrenceId()
get recurrence id
static getExclusionDates($a_cal_id)
Read exclusion dates.
setRecurrence($a_type)
set type of recurrence
setBYSETPOS($a_by)
set by day
getInterval()
get interval
getFrequenceUntilCount()
get frequence until count
setBYDAY($a_byday)
set by day
setBYYEARDAY($a_by)
set by day
setTimeZone($a_tz)
set timezone
reset()
reset all settings