function uc_cart_table_settings in Ubercart 5
Implementation of hook_table_settings().
File
- uc_cart/
uc_cart.module, line 471
Code
function uc_cart_table_settings() {
$tables[] = array(
'id' => 'uc_cart_view_table',
'description' => t("Display information on products in a customer's cart."),
'path' => 'admin/store/settings/tables',
'access' => 'administer store',
'preview' => FALSE,
);
return $tables;
}