You are here

function node_nodewords_type_id in Nodewords: D6 Meta Tags 6

Same name and namespace in other branches
  1. 6.2 includes/node.inc \node_nodewords_type_id()

Implements hook_nodewords_type_id().

File

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

Code

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

    // Node paths: node/$nid.
    if (isset($arg[1]) && is_numeric($arg[1]) && ($node = node_load($arg[1]))) {
      $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;
      }
    }
  }
}