This project is not covered by Drupal’s security advisory policy.

This module is marked unsupported due to a security issue the maintainer never fixed See SA-CONTRIB-2012-070 for details.

If you want to use this module, your options are:

This module provides a page where you can see each content type you've selected and under every terms from vocabularies you've selected.

You can :

  • select which content types you want to display;
  • select which vocabularies you want to display.

Provided :

  • pages where your catalog vocabulary is displayed as a grid, with a nested navigation (when you click on a child term, you have the same catalog display for this term or the taxonomy term page if this term doesn't have children);
  • blocks, one per parent term and a general one containing the entire vocabulary, links in this block point to catalog pages;
  • breadcrumbs corresponding to the catalog on terms pages or nodes pages.

Version 1.2
This version is a complete refactoring and the module is now more a hierarchical catalog allowing to go inside.
Final terms (without terms children) link to their taxonomy term pages.
Integration of the Taxonomy Image module to manage pictures.

Version 1.1
Some parts are themeable, especially this function that you can override in your theme in order to give a correct link on the content type :

<?php
/**
 * Create a link to the content type
 * @param string $name the human readable name of the content type to add an addlink to
 * @param string $key the name of the content type to add an addlink to
 * @return string
 */
function theme_taxonomy_grid_title_link($name,$key){
	$output="";
	$output.=l($name, "contenu/".$key, array('attributes' => array('id' => "id_".$name)));	
	return $output;
}
?>

Project information

Releases