Lines Matching refs:start
15 /** @var int column number containing the start date */
71 * The first date column is the start, the second is the end
124 $start = $row[$this->colrefStart]->getCompareValue();
125 $start = explode(' ', $start); // cut off time
126 $start = array_shift($start);
127 if ($start && $start < $min) $min = $start;
128 if ($start && $start > $max) $max = $start;
290 $start = $row[$this->colrefStart]->getCompareValue();
293 if ($start && $end) {
294 $r1 = $this->listDays($this->minDate, $start);
295 $r2 = $this->listDays($start, $end);
351 * @param string $start as YYYY-MM-DD
355 protected function listDays($start, $end)
357 if ($start > $end) [$start, $end] = [$end, $start];
361 new \DateTime($start),
381 * @param string $start as YYYY-MM-DD
385 protected function makeHeaders($start, $end)
387 if ($start > $end) [$start, $end] = [$end, $start];
391 new \DateTime($start),