function theme_slickgrid_tabs in Slickgrid 7
Same name and namespace in other branches
- 7.2 theme/theme.inc \theme_slickgrid_tabs()
Theme function for the slickgrid tabs
Parameters
array $options:
array $columns:
array $view_name:
1 theme call to theme_slickgrid_tabs()
File
- theme/
theme.inc, line 287
Code
function theme_slickgrid_tabs($variables) {
$path = drupal_get_path('module', 'slickgrid');
drupal_add_css($path . '/css/slickgrid.controls.css');
drupal_add_js($path . '/js/controls/slickgrid.tabs.js');
$output = '<div id="slickgrid-tabs"></div>';
return $output;
}