You are here

function hook_metatags_api in Nodewords: D6 Meta Tags 6.3

Reports the API version supported by the module implementing meta tags.

Return value

An array containing the following indexes:

  • path - the path where the files for the integration with Nodewords are placed.
  • version - the version version used by the module; basing on this value Nodewords will take the necessary steps to assure to keep the module compatible with Nodewords, The minimum version currently supported by the module is contained in the constant NODEWORDS_MINIMUM_VERSION, and the current version version is contained in the constant NODEWORDS_VERSION.
1 function implements hook_metatags_api()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

nodewords_basic_metatags_api in nodewords_basic/nodewords_basic.module
Implements hook_metatags_api().
2 invocations of hook_metatags_api()
nodewords_load_all_includes in ./nodewords.module
Load an include file for each of the modules that have support for Nodewords.
nodewords_load_include in ./nodewords.module
Load an include file.

File

./nodewords.api.php, line 43
. Nodewords hooks.

Code

function hook_metatags_api() {
  return array(
    'version' => '2.16',
    'path' => '',
  );
}