You are here

function footable_libraries_load in FooTable 7.2

Load the FooTable library.

See also

libraries_load()

2 calls to footable_libraries_load()
template_preprocess_footable_view in ./footable.module
Display a view as a FooTable style.
theme_footable in ./footable.theme.inc
Returns HTML for a table.

File

./footable.module, line 159
Provides Views integration for the jQuery FooTable plugin.

Code

function footable_libraries_load() {
  $type = variable_get('footable_plugin_type', 'standalone');
  $compression = variable_get('footable_plugin_compression', 'minified');
  libraries_load('footable', $type . '_' . $compression);
}