You are here

function gridbuilder_ctools_plugin_api in Grid builder 7

Implementation of hook_ctools_plugin_api().

Tell CTools that we support the default_gridbuilder_grids API.

File

./gridbuilder.module, line 55
Simple grid builder tool.

Code

function gridbuilder_ctools_plugin_api($owner, $api) {
  if ($owner == 'gridbuilder' && $api == 'default_gridbuilder_grids') {
    return array(
      'version' => 1,
    );
  }
}