You are here

function theme_support_page_user in Support Ticketing System 7

Same name and namespace in other branches
  1. 6 support.user.inc \theme_support_page_user()

@TODO Please document this function.

See also

http://drupal.org/node/1354

1 theme call to theme_support_page_user()
support_page_user in ./support.user.inc

File

./support.user.inc, line 186

Code

function theme_support_page_user($variables) {
  $header = $variables['header'];
  $rows = $variables['rows'];
  return theme('table', array(
    'header' => $header,
    'rows' => $rows,
    'attributes' => array(
      'class' => array(
        'support',
      ),
    ),
  )) . theme('pager');
}