function commerce_reports_dashboard_row in Commerce Reporting 7.4
Same name and namespace in other branches
- 7.3 commerce_reports.dashboard.inc \commerce_reports_dashboard_row()
Creates render array of a row on the dashboard.
Parameters
array $items: Dashboard row's blocks.
Return value
array Returns render array.
1 call to commerce_reports_dashboard_row()
- commerce_reports_dashboard in ./
commerce_reports.dashboard.inc - Renders the dashboard.
File
- ./
commerce_reports.dashboard.inc, line 78 - Dashboard for reporting module.
Code
function commerce_reports_dashboard_row($items = array()) {
return array(
'#theme_wrappers' => array(
'commerce_reports_dashboard_row',
),
'items' => $items,
);
}