You are here

function image_gallery_term_path in Image 6

Same name and namespace in other branches
  1. 5.2 contrib/image_gallery/image_gallery.module \image_gallery_term_path()
  2. 5 contrib/image_gallery/image_gallery.module \image_gallery_term_path()
  3. 7 contrib/image_gallery/image_gallery.module \image_gallery_term_path()

Implementation of hook_term_path().

File

contrib/image_gallery/image_gallery.module, line 108

Code

function image_gallery_term_path($term) {
  return 'image/tid/' . $term->tid;
}