You are here

function taxonomy_deploy_menu in Deploy - Content Staging 6

Implementation of hook_menu().

File

modules/taxonomy_deploy/taxonomy_deploy.module, line 13
Deployment API which enables modules to deploy items between servers.

Code

function taxonomy_deploy_menu() {
  $items = array();
  $items['admin/content/taxonomy/deploy'] = array(
    'title' => t('Deploy'),
    'description' => t('Add a taxonomy vocabulary to a deployment plan.'),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'taxonomy_vocabulary_deploy_add_form',
      5,
    ),
    'access arguments' => array(
      'add items to deployment plan',
    ),
    'file' => 'taxonomy_deploy.pages.inc',
    'type' => MENU_LOCAL_TASK,
  );
  return $items;
}