You are here

function uc_wishlist_table_settings in UC Wish List 6

Implementation of hook_table_settings().

File

./uc_wishlist.module, line 352
Allows users to create public shopping/wish lists.

Code

function uc_wishlist_table_settings() {
  $tables[] = array(
    'id' => 'uc_wishlist_view_table',
    'description' => t("Display information on products in a customer's wish list."),
    'path' => 'admin/store/settings/tables',
    'access' => 'administer store',
    'preview' => FALSE,
  );
  return $tables;
}