You are here

function uc_product_settings_overview in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_product/uc_product.module \uc_product_settings_overview()

Displays overview of product settings.

See also

uc_product_settings_form()

uc_product_field_settings_form()

1 string reference to 'uc_product_settings_overview'
uc_product_menu in uc_product/uc_product.module
Implements hook_menu().

File

uc_product/uc_product.admin.inc, line 76
Product administration menu items.

Code

function uc_product_settings_overview() {

  // Load the form summaries for pages beneath this path.
  $summaries = summarize_child_form_pages('admin/store/settings/products/edit');

  // Theme it all up in a summaries overview.
  return theme('summary_overview', $summaries);
}