You are here

function development_environment_permission in Development Environment 7

Implements hook_permission().

File

./development_environment.module, line 41
Holds hooks for the Development Environment module.

Code

function development_environment_permission() {
  return array(
    'access development environment email logs' => array(
      'title' => t('Access development environment mail logs'),
      'description' => t('Allows administrators to view logs of emails that the development environment module has prevented from being sent'),
    ),
    'administer development environment settings' => array(
      'title' => t('Administer development environment settings'),
      'description' => t('Allows administrators to administer settings for the Development Environment module'),
    ),
  );
}