You are here

function blog_nodewords_type_id in Nodewords: D6 Meta Tags 6.2

Implements hook_nodewords_type_id().

File

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

Code

function blog_nodewords_type_id(&$result, $arg) {
  if ($arg[0] == 'blog' && is_numeric($arg[1])) {
    $result['type'] = NODEWORDS_TYPE_USER;
    $result['id'] = $arg[1];
  }
}