You are here

function hook_nodewords_api in Nodewords: D6 Meta Tags 6

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

The hook is used from nodewords.module to know which API is supported by the the module.

Return value

An array containing the following indexes:

  • 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.
3 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_extra_nodewords_api in nodewords_extra/nodewords_extra.module
Implements hook_nodewords_api().
nodewords_og_nodewords_api in nodewords_og/nodewords_og.module
Implements hook_nodewords_api().
1 invocation of hook_nodewords_api()
nodewords_get_possible_tags in ./nodewords.module
Query all the modules implementing meta tags and return the list of meta tags.

File

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

Code

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