You are here

function node_metatags_type in Nodewords: D6 Meta Tags 6.3

Implements hook_metatags_type().

File

includes/node.inc, line 11
Integration file for node.module.

Code

function node_metatags_type(&$result, $arg) {
  if ($arg[0] == 'node') {

    // Node paths: node/$nid.
    $bool = isset($arg[1]) && is_numeric($arg[1]) && ($node = menu_get_object());
    if ($bool) {
      $bool = $node->type == 'poll' && isset($arg[2]) && in_array($arg[2], array(
        'edit',
        'results',
      )) || !isset($arg[2]);
      if ($bool) {
        $result['type'] = NODEWORDS_TYPE_NODE;
        $result['id'] = $node->nid;
        $result['sid'] = $node->vid;
      }
    }
  }
}