function theme_support_page_user in Support Ticketing System 7
Same name and namespace in other branches
- 6 support.user.inc \theme_support_page_user()
@TODO Please document this function.
See also
1 theme call to theme_support_page_user()
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');
}