function taxonomy_tools_publisher_menu in Taxonomy Tools 8
Same name and namespace in other branches
- 7 taxonomy_tools_publisher/taxonomy_tools_publisher.module \taxonomy_tools_publisher_menu()
Implements hook_menu().
File
- taxonomy_tools_publisher/
taxonomy_tools_publisher.module, line 33 - Drupal hooks and functions to manipulate taxonomy terms.
Code
function taxonomy_tools_publisher_menu() {
$items['admin/config/taxonomy-tools/publisher'] = array(
'title' => 'Taxonomy Publisher',
'description' => 'Configure which vocabularies will use Taxonomy Publisher.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'taxonomy_tools_publisher_admin_form',
),
'access arguments' => array(
'administer taxonomy publisher configuration',
),
'file' => 'taxonomy_tools_publisher.admin.inc',
'file path' => drupal_get_path('module', 'taxonomy_tools_publisher'),
);
return $items;
}