Lines Matching defs:row
122 /** @var Value[] $row */
123 foreach ($this->searchConfig->getResult()->getRows() as $row) {
124 $start = $row[$this->colrefStart]->getCompareValue();
130 $end = $row[$this->colrefEnd]->getCompareValue();
214 foreach ($this->searchConfig->getResult()->getRows() as $row) {
215 $this->renderRow($row);
230 * Get the color to use in this row
232 * @param Value[] $row
235 protected function getColorStyle($row)
238 $color = $row[$this->colrefColor]->getValue();
239 $conf = $row[$this->colrefColor]->getColumn()->getType()->getConfig();
263 * Render a row for the days and the today pointer
284 * Render one row in the diagram
286 * @param Value[] $row
288 protected function renderRow($row)
290 $start = $row[$this->colrefStart]->getCompareValue();
291 $end = $row[$this->colrefEnd]->getCompareValue();
313 $row[$this->labelRef]->render($this->renderer, $this->mode);
323 $style = $this->getColorStyle($row);
325 $row[$this->titleRef]->render($this->renderer, $this->mode);
328 foreach ($row as $value) {