You are here

function dbtng_migrator_permission in DBTNG Migrator 7

Implementation of hook_permission().

File

./dbtng_migrator.module, line 6

Code

function dbtng_migrator_permission() {
  return array(
    'use dbtng migrator' => array(
      'title' => t('Use DBTNG Migrator'),
      'description' => t('Allows users to migrate data from one database connection to another.'),
      'restrict access' => TRUE,
    ),
  );
}