Skip to content
Snippets Groups Projects
Commit 40259a20 authored by Carsten  Rose's avatar Carsten Rose
Browse files

Report: fsep and rsep implemented.

parent 520b3282
No related branches found
No related tags found
No related merge requests found
......@@ -444,7 +444,7 @@ class Report {
// SEP set seperator (empty on first run)
$content .= $columnValueSeperator;
$columnValueSeperator = $this->variables->doVariables($this->frArray[$full_level . "." . "sep"]);
$columnValueSeperator = $this->variables->doVariables($this->frArray[$full_level . "." . "rsep"]);
// RBGD: gerade- ungerade- Zeilen/Rows
$content .= str_replace("rbgd", $arrRbgd[$rowIndex % 2], $this->frArray[$full_level . "." . "rbeg"]);
......@@ -534,6 +534,7 @@ class Report {
// debug(array('function' => 'collectRow'));
}
$fsep = '';
for ($ii = 0; $ii < count($keys); $ii++) {
$this->fr_error["columnIndex"] = $ii; // Debugging Information
......@@ -545,9 +546,11 @@ class Report {
$tmp = $this->renderColumn($ii, $keys[$ii], $row[$ii], $full_level, $rowIndex, $show);
if ($show) {
//prints
$content .= $this->variables->doVariables($fsep);
$content .= $this->variables->doVariables($this->frArray[$full_level . "." . "fbeg"]);
$content .= $tmp;
$content .= $this->variables->doVariables($this->frArray[$full_level . "." . "fend"]);
$fsep = $this->frArray[$full_level . "." . "fsep"];
}
}
return ($content);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment