function uc_store_tables in Ubercart 6.2
Same name and namespace in other branches
- 5 uc_store/uc_store.module \uc_store_tables()
Lists extensible TAPIr tables used by Ubercart.
File
- uc_store/
uc_store.admin.inc, line 936 - Store administration menu items.
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;
}