You are here

function seotools_ctools_plugin_api in Drupal SEO Tools 6

Implementation of hook_ctools_plugin_api().

File

./seotools.features.inc, line 6

Code

function seotools_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => 1,
    );
  }
}