You are here

function popup_ui_table in Popup 6.x

Implementation of theme_table Wraps tables to provide horisontal scrolling if needed

1 string reference to 'popup_ui_table'
popup_ui_theme in modules/popup_ui/popup_ui.module
Implementation of hook_theme

File

modules/popup_ui/popup_ui.module, line 206

Code

function popup_ui_table($header, $rows, $attributes = array(), $caption = NULL) {
  return '<div class="table-wrapper">' . theme_table($header, $rows, $attributes, $caption) . '</div>';
}