function uc_order_settings_overview in Ubercart 6.2
Same name and namespace in other branches
- 5 uc_order/uc_order.module \uc_order_settings_overview()
Displays an overview of the order settings.
1 string reference to 'uc_order_settings_overview'
- uc_order_menu in uc_order/
uc_order.module - Implements hook_menu().
File
- uc_order/
uc_order.admin.inc, line 11 - Order administration menu items.
Code
function uc_order_settings_overview() {
$summaries = array();
// don't load admin/store/settings/orders/edit/workflow/create
$summaries = array_merge($summaries, summarize_child_form_pages('admin/store/settings/orders/edit/basic', FALSE, TRUE));
$summaries = array_merge($summaries, summarize_child_form_pages('admin/store/settings/orders/edit/workflow', FALSE, TRUE));
$summaries = array_merge($summaries, summarize_child_form_pages('admin/store/settings/orders/edit/panes', FALSE, TRUE));
// Theme it all up in a summaries overview.
return theme('summary_overview', $summaries);
}