You are here

function example_context_reaction_isotope_ctools_plugin_api in Isotope (with Masonry and Packery) 7

Implements hook_ctools_plugin_api().

File

examples/example_context_reaction_isotope/example_context_reaction_isotope.features.inc, line 10
example_context_reaction_isotope.features.inc

Code

function example_context_reaction_isotope_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "context" && $api == "context") {
    return array(
      "version" => "3",
    );
  }
}