You are here

function simplenews_roles_help in Simplenews Roles 7

Same name and namespace in other branches
  1. 6.2 simplenews_roles.module \simplenews_roles_help()
  2. 6 simplenews_roles.module \simplenews_roles_help()

Implements hook_help().

File

./simplenews_roles.module, line 13
Synchronize user subscriptions based on user roles membership.

Code

function simplenews_roles_help($path, $arg) {
  switch ($path) {
    case 'admin/help#simplenews_roles':
      return '<p>' . t('Simplenews roles keeps subscriptions to particular newsletters synchronized with one or more roles. Enable roles in the options for <a href="@newsletters">each newsletter</a>.', array(
        '@newsletters' => url('admin/content/simplenews/types'),
      )) . '</p>';
  }
}