You are here

function boxes_ctools_plugin_api in Boxes 7

Same name and namespace in other branches
  1. 6 boxes.module \boxes_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./boxes.module, line 627
Core functionality for boxes module.

Code

function boxes_ctools_plugin_api($module, $api) {
  if ($module == 'spaces' && $api == 'plugins') {
    return array(
      'version' => 3,
    );
  }
  elseif ($module == 'boxes' && $api == 'plugins') {
    return array(
      'version' => 1,
    );
  }
}