You are here

blog.inc in Nodewords: D6 Meta Tags 6.2

Integration file for blog.module.

File

includes/blog.inc
View source
<?php

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

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

Functions