You are here

function pdf_document_ctools_plugin_api in PDF to ImageField 7

Same name and namespace in other branches
  1. 6.2 pdf_document/pdf_document.features.inc \pdf_document_ctools_plugin_api()

Implements hook_ctools_plugin_api().

File

pdf_document/pdf_document.features.inc, line 6

Code

function pdf_document_ctools_plugin_api() {
  list($module, $api) = func_get_args();
  if ($module == "strongarm" && $api == "strongarm") {
    return array(
      "version" => 1,
    );
  }
}