legacy_taxonomy_page

Definition

legacy_taxonomy_page($operation = 'or', $str_tids = '')
modules/legacy.module, line 68

Description

Menu callback; redirects users to new taxonomy page paths.

Code

<?php
function legacy_taxonomy_page($operation = 'or', $str_tids = '') {
  if ($operation == 'or') {
    $str_tids = str_replace(',', '+', $str_tids);
  }
  drupal_goto('taxonomy/term/'. $str_tids);
}
?>
 
 

Drupal is a registered trademark of Dries Buytaert.