Lines Matching refs:row
44 foreach ($result as $i => $row) {
50 echo $this->row($row, $pid);
62 $row = '';
65 $row .= $this->escape('pid');
66 $row .= ',';
70 $row .= $this->escape($col->getLabel());
71 $row .= ',';
73 return rtrim($row, ',') . "\r\n";
83 protected function row($values, $pid) function in dokuwiki\\plugin\\struct\\meta\\CSVExporter
85 $row = '';
87 $row .= $this->escape($pid);
88 $row .= ',';
97 $row .= $this->escape($val);
98 $row .= ',';
101 return rtrim($row, ',') . "\r\n";