You are here

taxonomy.inc in Nodewords: D6 Meta Tags 6.3

Same filename and directory in other branches
  1. 6 includes/taxonomy.inc
  2. 6.2 includes/taxonomy.inc

Integration file for taxonomy.module.

File

includes/taxonomy.inc
View source
<?php

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

/**
 * Implements hook_metatags_type().
 */
function taxonomy_metatags_type(&$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;
          }
        }
      }
    }
  }
}

Functions

Namesort descending Description
taxonomy_metatags_type Implements hook_metatags_type().