You are here

function audiofield_permission in AudioField 7

Implements hook_permission().

File

./audiofield.module, line 30
Audio Field module for displaying audio files as usable players.

Code

function audiofield_permission() {
  return array(
    'download own audio files' => array(
      'title' => t('Download Own Audio Files'),
      'description' => t('Let the users download their own audio files.'),
    ),
    'download all audio files' => array(
      'title' => t('Download All Audio Files'),
      'description' => t('Let the users download any audio files.'),
    ),
  );
}