You are here

function isotope_ctools_plugin_api in Isotope (with Masonry and Packery) 7.2

Implements hook_ctools_plugin_api().

Tell CTools that we support the default_isotope_preset API.

File

./isotope.module, line 27
Load the isotope library and provide configuration and theme options.

Code

function isotope_ctools_plugin_api($owner, $api) {
  if ($owner == 'isotope' && $api == 'default_isotope_configurations') {
    return array(
      'version' => 1,
    );
  }
}