You are here

function blogapi_blogger_ctools_plugin_api in Blog API 7.2

Implements hook_ctools_plugin_api().

File

modules/blogapi_blogger/blogapi_blogger.module, line 22
Provides Blogger services for BlogAPI

Code

function blogapi_blogger_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "services" && $api == "services") {
    return array(
      "version" => "3",
    );
  }
}