function views_isotope_ctools_plugin_api in Views Isotope (Deprecated) 7.2
Implements hook_ctools_plugin_api().
Tell CTools that we support the default_views_isotope_preset API.
File
- ./
views_isotope.module, line 27 - 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 array(
'version' => 1,
);
}
}