You are here

function payment_page_status in Payment 7

Display a payment status overview.

Return value

string

1 string reference to 'payment_page_status'
payment_menu in ./payment.module
Implements hook_menu().

File

./payment.ui.inc, line 466
The Payment user interface.

Code

function payment_page_status() {
  return theme('table', array(
    'header' => array(
      t('Title'),
      t('Description'),
    ),
    'rows' => _payment_page_status_level(payment_status_hierarchy(), 0),
  ));
}