function privatemsg_limits_perm in Privatemsg 6.2
Implements hook_perm()-
File
- privatemsg_limits/
privatemsg_limits.module, line 11 - Privatemsg Quota module
Code
function privatemsg_limits_perm() {
// Description for this permission:
// 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.
return array(
'bypass recipient message limit',
);
}