You are here

function mobile_tools_ctools_plugin_api in Mobile Tools 7.2

Same name and namespace in other branches
  1. 7.3 mobile_tools.module \mobile_tools_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

./mobile_tools.module, line 277
Functionality to ease the creation of mixed device environments.

Code

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