Lines Matching refs:row
110 ->map(static function (object $row) use ($tree): object {
111 $row->record = null;
112 $row->label = '';
114 if ($row->xref !== null) {
115 $row->record = Registry::gedcomRecordFactory()->make($row->xref, $tree);
118 if ($row->tag_type) {
119 $row->tag_label = $row->tag_type;
122 $element = Registry::elementFactory()->make($prefix . $row->tag_type);
125 $row->tag_label = $element->label();
130 $row->tag_label = '';
133 return $row;