Searched refs:endMonth (Results 1 – 6 of 6) sorted by relevance
/plugin/bibtex/OSBib/format/bibtexParse/ |
H A D | PARSEMONTH.php | 34 $startMonth = $this->startDay = $endMonth = $this->endDay = FALSE; 44 $endMonth = $month; 52 $endMonth = $month; 57 if($this->endDay && !$endMonth) 58 $endMonth = $startMonth; 59 return array($startMonth, $this->startDay, $endMonth, $this->endDay);
|
H A D | CHANGELOG | 16 …"--" # dec # " 2") are correctly parsed. (list($startMonth, $startDay, $endMonth, $endDay) = $pars…
|
H A D | README | 90 list($startMonth, $startDay, $endMonth, $endDay) = $parseMonth->init($monthField);
|
/plugin/bibtex/OSBib/format/ |
H A D | BIBSTYLE.php | 182 $endMonth = isset($this->row['miscField6']) ? stripslashes($this->row['miscField6']) : FALSE; 190 $endMonth = ($endMonth == 0) ? FALSE : $endMonth; 191 $this->bibformat->formatDate($startDay, $startMonth, $endDay, $endMonth);
|
H A D | BIBFORMAT.php | 386 $this->formatDate($startDay, $startMonth, $endDay, $endMonth); 1219 function formatDate($startDay, $startMonth, $endDay, $endMonth) argument 1247 if($endMonth !== FALSE) 1248 $endMonth = $monthArray[$endMonth]; 1249 if(!$endMonth) 1268 …if(($endMonth !== FALSE) && ($startMonth == $endMonth) && ($this->style['dateRangeSameMonth'] == 1… 1270 $endMonth = FALSE; 1278 if($endMonth) 1279 $endDate = $endMonth . $endDay = ($endDay === FALSE) ? '' : ' ' . $endDay; 1285 if($endMonth) [all …]
|
/plugin/bibtex/OSBib/create/ |
H A D | PREVIEWSTYLE.php | 170 $endMonth = isset($this->row['miscField6']) ? stripslashes($this->row['miscField6']) : FALSE; 178 $endMonth = ($endMonth == 0) ? FALSE : $endMonth; 179 $this->bibformat->formatDate($startDay, $startMonth, $endDay, $endMonth);
|