You are here

function pm_block_user_help in Privatemsg 7

Same name and namespace in other branches
  1. 6.2 pm_block_user/pm_block_user.module \pm_block_user_help()
  2. 6 pm_block_user/pm_block_user.module \pm_block_user_help()
  3. 7.2 pm_block_user/pm_block_user.module \pm_block_user_help()

Implements hook_help().

File

pm_block_user/pm_block_user.module, line 21
Allows users to block other users from sending them any messages

Code

function pm_block_user_help($path) {
  switch ($path) {
    case 'admin/settings/messages/block':
      return '<p>' . t('This area is used to define user blocking rules for the Privatemsg module. Rules allow control of who may block messages from whom. By default all users are allowed to block messages from anyone else. However, a site may have groups of users that need to contact or get information to others, for example: the site may have administrative staff or be a forum with moderators. Groups of users are defined by roles, which can be managed on the <a href="@roles">roles configuration page</a>.', array(
        '@roles' => url('admin/user/roles'),
      )) . '</p>';
  }
}