function uc_store_reports in Ubercart 7.3
Same name and namespace in other branches
- 5 uc_store/uc_store.module \uc_store_reports()
- 6.2 uc_store/uc_store.admin.inc \uc_store_reports()
Displays main reports page.
1 string reference to 'uc_store_reports'
- uc_store_menu in uc_store/
uc_store.module - Implements hook_menu().
File
- uc_store/
uc_store.admin.inc, line 89 - Store administration menu items.
Code
function uc_store_reports() {
$menu = menu_get_item('admin/store/reports');
$content = system_admin_menu_block($menu);
$build['menu'] = array(
'#theme' => 'admin_block_content',
'#content' => $content,
'#weight' => 5,
);
return $build;
}