You are here

function _privatemsg_groups_is_group_recipient_type in Privatemsg 7.2

Given a recipient type name, check to see if it is a group recipient type.

File

privatemsg_groups/privatemsg_groups.module, line 242
Allows to send messages to all members of an organic group

Code

function _privatemsg_groups_is_group_recipient_type($recipient_type) {
  return strpos($recipient_type, 'og:', 0) === 0;
}