You are here

function uuid_features_menu in UUID Features Integration 7

Implements hook_menu().

File

./uuid_features.module, line 40
UUID Features module allows to export data stored in the db by features.

Code

function uuid_features_menu() {
  $items['admin/structure/features/uuid_features'] = array(
    'access arguments' => array(
      'administer site configuration',
    ),
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'uuid_features_settings',
    ),
    'title' => 'UUID Export Settings',
    'type' => MENU_LOCAL_TASK,
    'description' => 'Configure the settings for UUID Features Integration.',
    'weight' => 20,
  );
  return $items;
}