function datatables_views_api in DataTables 6
Same name and namespace in other branches
- 7.2 datatables.module \datatables_views_api()
- 7 datatables.module \datatables_views_api()
Implementation of hook_views_api().
File
- ./
datatables.module, line 22 - Provides integration of the jQuery DataTables plugin
Code
function datatables_views_api() {
return array(
'api' => 2.0,
'path' => drupal_get_path('module', 'datatables') . '/views',
);
}