You are here

function uc_product_table_settings in Ubercart 5

Define up the product list table.

See also

uc_product_table

File

uc_product/uc_product.module, line 876
The product module for Ubercart.

Code

function uc_product_table_settings() {
  $tables = array();
  $tables[] = array(
    'id' => 'uc_product_table',
    'description' => t('Lists a group of products in an abbreviated format.'),
    'path' => 'admin/store/settings/tables',
    'access' => 'administer store',
    'preview' => FALSE,
  );
  return $tables;
}