You are here

function hook_nodewords_api in Nodewords: D6 Meta Tags 6.2

Same name and namespace in other branches
  1. 6 nodewords.api.php \hook_nodewords_api()

Reports the API is supported by the modules 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 API 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 API currently supported by the module is contained in the constant NODEWORDS_MINIMUM_API_VERSION, and the current API version is contained in the constant NODEWORDS_API_VERSION.
4 functions implement hook_nodewords_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_nodewords_api in nodewords_basic/nodewords_basic.module
Implements hook_nodewords_api().
nodewords_custom_pages_nodewords_api in nodewords_custom_pages/nodewords_custom_pages.module
Implements hook_nodewords_api().
nodewords_extra_nodewords_api in nodewords_extra/nodewords_extra.module
Implements hook_nodewords_api().
nodewords_verification_tags_nodewords_api in nodewords_verification_tags/nodewords_verification_tags.module
Implements hook_nodewords_api().
2 invocations of hook_nodewords_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 24
. Nodewords hooks.

Code

function hook_nodewords_api() {
  return array(
    'version' => '1.14',
    'path' => '',
  );
}