Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
40259a20
Commit
40259a20
authored
Mar 18, 2016
by
Carsten Rose
Browse files
Report: fsep and rsep implemented.
parent
520b3282
Changes
1
Hide whitespace changes
Inline
Side-by-side
extension/qfq/qfq/report/Report.php
View file @
40259a20
...
...
@@ -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
.
"."
.
"
r
sep"
]);
// 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
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment