function uc_payment_table_settings in Ubercart 5
Implementation of hook_table_settings().
File
- payment/
uc_payment/ uc_payment.module, line 203
Code
function uc_payment_table_settings() {
$tables[] = array(
'id' => 'uc_payments_table',
'description' => t('The payments table on the order payments screen.'),
'path' => 'admin/store/settings/tables',
'access' => 'view all orders',
'preview' => FALSE,
);
return $tables;
}