You are here

function answers_permission in Answers 7.4

Implements hook_permission().

File

./answers.module, line 71
The Answers module.

Code

function answers_permission() {
  return array(
    'manage answers content' => array(
      'title' => t('Manage !answers content', answers_translation()),
      'description' => t('Edit any !question or !answer content.', answers_translation()),
    ),
  );
}