Searched refs:startMonth (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; 41 if(!$startMonth) 42 $startMonth = $month; 49 if(!$startMonth) 50 $startMonth = $month; 58 $endMonth = $startMonth; 59 return array($startMonth, $this->startDay, $endMonth, $this->endDay);
|
H A D | CHANGELOG | 16 …--9," or nov # " 29" # "--" # dec # " 2") are correctly parsed. (list($startMonth, $startDay, $end…
|
H A D | README | 90 list($startMonth, $startDay, $endMonth, $endDay) = $parseMonth->init($monthField);
|
/plugin/bibtex/OSBib/format/ |
H A D | BIBSTYLE.php | 178 $startMonth = isset($this->row['miscField3']) ? stripslashes($this->row['miscField3']) : FALSE; 186 $startMonth = ($startMonth == 0) ? FALSE : $startMonth; 187 if(!$startMonth) 191 $this->bibformat->formatDate($startDay, $startMonth, $endDay, $endMonth);
|
H A D | BIBFORMAT.php | 384 else if($startMonth) 386 $this->formatDate($startDay, $startMonth, $endDay, $endMonth); 1215 * @param INT $startMonth 1219 function formatDate($startDay, $startMonth, $endDay, $endMonth) argument 1245 if($startMonth !== FALSE) 1246 $startMonth = $monthArray[$startMonth]; 1254 $date = $startMonth . $startDay; 1259 $date = $startDay . $startMonth; 1277 $startDate = $startMonth . $startDay; 1287 $startDate = $startDay . ' ' . $startMonth; [all …]
|
/plugin/bibtex/OSBib/create/ |
H A D | PREVIEWSTYLE.php | 166 $startMonth = isset($this->row['miscField3']) ? stripslashes($this->row['miscField3']) : FALSE; 174 $startMonth = ($startMonth == 0) ? FALSE : $startMonth; 175 if(!$startMonth) 179 $this->bibformat->formatDate($startDay, $startMonth, $endDay, $endMonth);
|