Lines Matching refs:row
233 ->map(static fn (object $row): object => (object) [
234 'id' => $row->id,
235 'year' => (int) $row->year,
236 'fact' => $row->fact,
237 'type' => $row->type,
251 $row = $this->eventQuery($direction);
254 if ($row !== null) {
255 $record = Registry::gedcomRecordFactory()->make($row->id, $this->tree);
292 $row = $this->eventQuery($direction);
294 if ($row === null) {
298 if ($row->year < 0) {
299 $row->year = abs($row->year) . ' B.C.';
302 return (new Date($row->type . ' ' . $row->year))
331 $row = $this->eventQuery($direction);
333 if ($row === null) {
338 $element = Registry::elementFactory()->make($record_type . ':' . $row->fact);
345 return $row->fact;
373 $row = $this->eventQuery($direction);
375 if ($row !== null) {
376 $record = Registry::gedcomRecordFactory()->make($row->id, $this->tree);
411 $row = $this->eventQuery($direction);
413 if ($row !== null) {
414 $record = Registry::gedcomRecordFactory()->make($row->id, $this->tree);
418 $fact = $record->facts([$row->fact])->first();