Home
last modified time | relevance | path

Searched refs:endDay (Results 1 – 8 of 8) sorted by relevance

/plugin/bibtex/OSBib/format/bibtexParse/
H A DPARSEMONTH.php34 $startMonth = $this->startDay = $endMonth = $this->endDay = FALSE;
57 if($this->endDay && !$endMonth)
59 return array($startMonth, $this->startDay, $endMonth, $this->endDay);
69 else if(!$this->endDay)
70 $this->endDay = $array[3];
77 $this->endDay = $array[2];
H A DCHANGELOG16 … # " 2") are correctly parsed. (list($startMonth, $startDay, $endMonth, $endDay) = $parseMonth->in…
H A DREADME90 list($startMonth, $startDay, $endMonth, $endDay) = $parseMonth->init($monthField);
/plugin/bibtex/OSBib/format/
H A DBIBFORMAT.php386 $this->formatDate($startDay, $startMonth, $endDay, $endMonth);
1216 * @param INT $endDay
1229 if($endDay !== FALSE)
1232 $endDay = $this->cardinalToOrdinal($endDay);
1233 else if($endDay < 10)
1234 $endDay = '0' . $endDay;
1271 if(!$endDay)
1279 $endDate = $endMonth . $endDay = ($endDay === FALSE) ? '' : ' ' . $endDay;
1281 $endDate = $endDay;
1288 $endDate = $endDay = ($endDay === FALSE) ? '' : $endDay . ' ';
[all …]
H A DBIBSTYLE.php181 $endDay = isset($this->row['miscField5']) ? stripslashes($this->row['miscField5']) : FALSE;
189 $endDay = ($endDay == 0) ? FALSE : $endDay;
191 $this->bibformat->formatDate($startDay, $startMonth, $endDay, $endMonth);
/plugin/bibtex/OSBib/create/
H A DPREVIEWSTYLE.php169 $endDay = isset($this->row['miscField5']) ? stripslashes($this->row['miscField5']) : FALSE;
177 $endDay = ($endDay == 0) ? FALSE : $endDay;
179 $this->bibformat->formatDate($startDay, $startMonth, $endDay, $endMonth);
/plugin/icalendar/
H A Dsyntax.php212 $endDay = date("Ymd", $entry['endunixdate']);
214 if ( $endDay > $startDay )
/plugin/davcal/fullcalendar-3.10.5/
H A Dfullcalendar.js10548 var endDay = end.clone().stripTime(); // the beginning of the day the range exclusively ends
10553 endDay.add(1, 'days');
10556 if (endDay <= startDay) {
10557 endDay = startDay.clone().add(1, 'days');
10559 return { start: startDay, end: endDay };