You are here

function views_isotope_ctools_plugin_api in Brainstorm profile 7

Implements hook_ctools_plugin_api().

Tell CTools that we support the default_views_isotope_preset API.

File

modules/custom/views_isotope/views_isotope.module, line 28
Load the isotope library and provide configuration and theme options.

Code

function views_isotope_ctools_plugin_api($owner, $api) {
  if ($owner == 'views_isotope' && $api == 'default_isotope_configurations') {
    return [
      'version' => 1,
    ];
  }
}