function __taxonomy_menu_page in Taxonomy menu 5
Page callback that renders a node listing for the selected term.
1 string reference to '__taxonomy_menu_page'
- _taxonomy_menu_menu in ./
taxonomy_menu.inc - Implementation of hook_menu().
File
- ./
taxonomy_menu.module, line 131 - taxonomy_menu.module @author Jonathan Chaffer <jchaffer@structureinteractive.com> @author Bruno Massa <http://drupal.org/user/67164> It Generates menu links for all taxonomy terms
Code
function __taxonomy_menu_page() {
require_once drupal_get_path('module', 'taxonomy_menu') . '/taxonomy_menu.inc';
return _taxonomy_menu_page();
}