You are here

tracker.inc in Nodewords: D6 Meta Tags 6.2

Integration file for tracker.module.

File

includes/tracker.inc
View source
<?php

/**
 * @file
 * Integration file for tracker.module.
 */

/**
 * Implements hook_nodewords_type_id().
 */
function tracker_nodewords_type_id(&$result, $arg) {
  if ($arg[0] == 'tracker') {
    $result['type'] = NDOEWORDS_TYPE_USER;
    $result['id'] = is_numeric($arg[1]) ? $arg[1] : $GLOBALS['user']->uid;
  }
}

Functions