You are here

function privatemsg_limits_permission in Privatemsg 7

Same name and namespace in other branches
  1. 7.2 privatemsg_limits/privatemsg_limits.module \privatemsg_limits_permission()

Implements hook_permission()-

File

privatemsg_limits/privatemsg_limits.module, line 11
Privatemsg Quota module

Code

function privatemsg_limits_permission() {
  return array(
    'bypass recipient message limit' => array(
      'title' => t('Bypass recipient message limit'),
      'description' => t("Enables a user to send a message to a recipient even when the recipient's message/conversation maximum limit has already been reached. Without this permission, the message would ordinarily be blocked."),
    ),
  );
}