You are here

function uc_store_tables in Ubercart 5

Same name and namespace in other branches
  1. 6.2 uc_store/uc_store.admin.inc \uc_store_tables()

List of extensible TAPIr tables used by Ubercart.

1 string reference to 'uc_store_tables'
uc_store_menu in uc_store/uc_store.module
Implementation of hook_menu().

File

uc_store/uc_store.module, line 1734
Contains global Ubercart functions and store administration functionality.

Code

function uc_store_tables() {
  $output = '<p>' . t('The following tables are used to display various parts of your store to your administrators and customers. Click on a table id to configure the display of that table.');
  $output .= '<p>' . tapir_table_list('admin/store/settings/tables') . '</p>';
  return $output;
}