You are here

function panopoly_wysiwyg_ctools_plugin_api in Panopoly WYSIWYG 7

Implements hook_ctools_plugin_api().

File

./panopoly_wysiwyg.features.inc, line 10
panopoly_wysiwyg.features.inc

Code

function panopoly_wysiwyg_ctools_plugin_api($module = NULL, $api = NULL) {
  if ($module == "linkit" && $api == "linkit_profiles") {
    return array(
      "version" => "1",
    );
  }
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => "1",
    );
  }
}