You are here

function taxonomy_nodewords_type_id in Nodewords: D6 Meta Tags 6

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

Implements hook_nodewords_type_id().

File

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

Code

function taxonomy_nodewords_type_id(&$result, $arg) {
  if ($arg[0] == 'taxonomy') {

    // Taxonomy paths: taxonomy/term/$tid , taxonomy/term/$tid1+$tid2.
    if (isset($arg[1]) && isset($arg[2]) && $arg[1] == 'term') {
      $ids = preg_split('![+, ]!', $arg[2]);
      if (count($ids)) {

        // Take the first ID that is numeric.
        foreach ($ids as $id) {
          if (is_numeric($id)) {
            $result['type'] = NODEWORDS_TYPE_TERM;
            $result['id'] = $id;
            return;
          }
        }
      }
    }
  }
}