You are here

function simplenews_roles_help in Simplenews Roles 6.2

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

Implementation of hook_help().

File

./simplenews_roles.module, line 29
Simplenews Roles module

Code

function simplenews_roles_help($path, $arg) {
  switch ($path) {
    case 'admin/help#simplenews_roles':
      return 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'),
      ));
  }
}