You are here

bundle_copy.api.php in Bundle Copy 7.2

Same filename and directory in other branches
  1. 7 bundle_copy.api.php

Hooks provided by Bundle copy.

File

bundle_copy.api.php
View source
<?php

/**
 * @file
 * Hooks provided by Bundle copy.
 */

/**
 * @addtogroup hooks
 * @{
 */

/**
 * Implements hook_bundle_copy_info().
 *
 * Return info for bundle copy. The first key is
 * the name of the entity_type.
 */
function hook_bundle_copy_info() {
  return array(
    'node' => array(
      'bundle_export_callback' => 'node_type_get_type',
      'bundle_save_callback' => 'node_type_save',
      'bundle_clone_name_validate' => 'node_type_load',
      'bundle_name_validate' => 'node_type_load',
      'export_menu' => array(
        'path' => 'admin/structure/types/export',
        'access arguments' => 'administer content types',
      ),
      'import_menu' => array(
        'path' => 'admin/structure/types/import',
        'access arguments' => 'administer content types',
      ),
      'clone_menu' => array(
        'path' => 'admin/structure/types/clone',
        'access arguments' => 'administer content types',
      ),
    ),
  );
}

/**
 * @} End of "addtogroup hooks".
 */

Functions