You are here

function gelf_permission in GELF 7

Implements hook_permission()

Allows admins to control access to gelf settings.

File

./gelf.module, line 14
gelf.module

Code

function gelf_permission() {
  return array(
    'administer gelf' => array(
      'title' => t('administer gelf'),
      'description' => t('Manage graylog2 host settings'),
    ),
  );
}