private function FrxCSVDoc::fillColumns in Forena Reports 7.4
Same name and namespace in other branches
- 7.3 docformats/FrxCSVDoc.inc \FrxCSVDoc::fillColumns()
Fill columns with rowspan tags.
Parameters
unknown_type $colspan:
File
- docformats/
FrxCSVDoc.inc, line 18 - FrxCSVDoc.inc CSV Document export. @author davidmetzler
Class
- FrxCSVDoc
- @file FrxCSVDoc.inc CSV Document export. @author davidmetzler
Code
private function fillColumns($colspan) {
$f = '';
for ($i = 2; $i <= $colspan; $i++) {
$f .= ',';
}
return $f;
}