天天看點

Drupal7自定義子產品的URL生成

function example_taxonomy_term_insert($term)

{

  example_taxonomy_term_update($term);

}

function example_taxonomy_term_update($term)

{

  $path = array(

    'source' => sprintf('term/%d', $term->tid),

    'alias' => sprintf('category/%s',

      pathauto_cleanstring($term->name),

    )

  );

  path_save($path);

}

function example_taxonomy_term_delete($term)

{

  path_delete(array('source' => sprintf('term/%d', $term->tid)));

}