You are here

function theme_uc_order_status_table in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_order/uc_order.module \theme_uc_order_status_table()
  2. 7.3 uc_order/uc_order.admin.inc \theme_uc_order_status_table()

Theme the order state table in the order workflow settings.

1 theme call to theme_uc_order_status_table()
uc_order_workflow_form in uc_order/uc_order.admin.inc
Displays the order workflow form for order state and status customization.

File

uc_order/uc_order.module, line 835

Code

function theme_uc_order_status_table($form) {
  $header = array(
    t('ID'),
    t('Title'),
    t('List position'),
    t('State'),
    t('Remove'),
  );
  $rows = array();
  $create = '';
  foreach (element_children($form) as $state_id) {
    if ($state_id == 'create') {
      $create = '<br />' . t('Use this button to create a custom order status: !create_form', array(
        '!create_form' => drupal_render($form['create']),
      ));
    }
    else {
      $rows[] = array(
        drupal_render($form[$state_id]['id']),
        drupal_render($form[$state_id]['title']),
        drupal_render($form[$state_id]['weight']),
        drupal_render($form[$state_id]['state']),
        array(
          'data' => drupal_render($form[$state_id]['remove']),
          'align' => 'center',
        ),
      );
    }
  }
  return theme('table', $header, $rows) . $create;
}