You are here

function composer_autoload_permission in Composer Autoload 7

Implements hook_permission().

File

./composer_autoload.module, line 117
Provides primary Drupal hook implementations.

Code

function composer_autoload_permission() {
  return array(
    'administer composer_autoload settings' => array(
      'title' => t('Administer Composer Autoload'),
      'description' => t('Configure a custom location to a Composer-built autoload.php file.'),
      'restrict access' => TRUE,
    ),
  );
}