You are here

function mobile_detect_ctools_ctools_plugin_api in Mobile Detect 7

Implements hook_ctools_plugin_api().

File

mobile_detect_ctools/mobile_detect_ctools.module, line 11
Hooks implementations for the mobile_detect_ctools module.

Code

function mobile_detect_ctools_ctools_plugin_api($module, $api) {
  if ($module == 'mobile_detect' && $api == 'mobile_detect') {
    return array(
      'version' => 3,
    );
  }
}