Searched refs:startDay (Results 1 – 8 of 8) sorted by relevance
/plugin/bibtex/OSBib/format/bibtexParse/ |
H A D | PARSEMONTH.php | 34 $startMonth = $this->startDay = $endMonth = $this->endDay = FALSE; 59 return array($startMonth, $this->startDay, $endMonth, $this->endDay); 67 if(!$this->startDay) 68 $this->startDay = $array[3]; 75 $this->startDay = $array[1];
|
H A D | CHANGELOG | 16 … # " 29" # "--" # dec # " 2") are correctly parsed. (list($startMonth, $startDay, $endMonth, $endD…
|
H A D | README | 90 list($startMonth, $startDay, $endMonth, $endDay) = $parseMonth->init($monthField);
|
/plugin/bibtex/OSBib/format/ |
H A D | BIBFORMAT.php | 382 if($startDay) 1214 * @param INT $startDay 1222 if($startDay !== FALSE) 1225 $startDay = $this->cardinalToOrdinal($startDay); 1226 else if($startDay < 10) 1227 $startDay = '0' . $startDay; 1253 $startDay = ($startDay === FALSE) ? '' : ' ' . $startDay; 1258 $startDay = ($startDay === FALSE) ? '' : $startDay . ' '; 1264 if(!$startDay) 1276 $startDay = ($startDay === FALSE) ? '' : ' ' . $startDay; [all …]
|
H A D | BIBSTYLE.php | 177 $startDay = isset($this->row['miscField2']) ? stripslashes($this->row['miscField2']) : FALSE; 185 $startDay = ($startDay == 0) ? FALSE : $startDay; 191 $this->bibformat->formatDate($startDay, $startMonth, $endDay, $endMonth);
|
/plugin/bibtex/OSBib/create/ |
H A D | PREVIEWSTYLE.php | 165 $startDay = isset($this->row['miscField2']) ? stripslashes($this->row['miscField2']) : FALSE; 173 $startDay = ($startDay == 0) ? FALSE : $startDay; 179 $this->bibformat->formatDate($startDay, $startMonth, $endDay, $endMonth);
|
/plugin/icalendar/ |
H A D | syntax.php | 211 $startDay = date("Ymd", $entry['startunixdate']); 214 if ( $endDay > $startDay )
|
/plugin/davcal/fullcalendar-3.10.5/ |
H A D | fullcalendar.js | 10545 …var startDay = calendar.msToUtcMoment(unzonedRange.startMs, true); // the beginning of the day the… 10556 if (endDay <= startDay) { 10557 endDay = startDay.clone().add(1, 'days'); 10559 return { start: startDay, end: endDay };
|