You are here

function _nodewords_node_load in Nodewords: D6 Meta Tags 6.3

2 calls to _nodewords_node_load()
hook_metatags_permission_alter in ./nodewords.api.php
Alters the permission users have on the meta tags being edited.
nodewords_replace_tokens in ./nodewords.module
Create the content of a meta tag from a node teaser.

File

./nodewords.module, line 994
Implement an version that other modules can use to add meta tags.

Code

function _nodewords_node_load($options) {
  return node_load(array(
    'nid' => $options['id'],
    'vid' => $options['sid'],
  ));
}