ACT_PAGE
ACT_PAGE
A class to define a grouping within a tabular report.
Groups can create multiple header and footer lines to display labels or calculated values. Each column inside a group can display a different value (such as a count, min/max/average/mean/sum) of grouped values.
add_header_line(\CGExtensions\reports\tabular_report_defn_group_line $line)
Add a header line to this report.
\CGExtensions\reports\tabular_report_defn_group_line | $line | The line definition. |
add_footer_line(\CGExtensions\reports\tabular_report_defn_group_line $line)
Add a footer line to this report.
\CGExtensions\reports\tabular_report_defn_group_line | $line | The line definition. |
set_after_action(string $tmp)
Set an action to perform after group footers are output (if any).
Some generators (for example PDF) may be able to do certain actions like generate a new page after the group. This flag indicates the preferred behavior for this group.
string | $tmp | The behavior. There are constants for this behavior defined in this class. unknown values will be ignored. |
set_before_action(string $tmp)
Set an action to perform before group headers are output (if any).
Some generators (for example PDF) may be able to do certain actions like generate a new page after the group. This flag indicates the preferred behavior for this group.
string | $tmp | The behavior. There are constants for this behavior defined in this class. unknown values will be ignored. |