You are here

function nodewords_migrate_api in Nodewords: D6 Meta Tags 6

Implementation of hook_migrate_api().

File

./nodewords.module, line 1252
Implement an API that other modules can use to implement meta tags.

Code

function nodewords_migrate_api() {
  return array(
    'api' => 1,
    'integration modules' => array(
      'nodewords' => array(
        'status' => FALSE,
      ),
    ),
  );
}