You are here

function commentaccess_help in Comment Access 7

Implementation of hook_help().

File

./commentaccess.module, line 12
Provides users with permissions for comments on nodes they own.

Code

function commentaccess_help($path, $arg) {
  switch ($path) {
    case 'admin/help#commentaccess':
      return '<p>' . t("This module lets users delete comments on nodes they create without giving them full comment administration access. Permissions are on a per node type basis, so it is a great way to, e.g., allow users to administer comments on their own blogs. Additionally, you can configure this module to force comments on selected node types to be approved before they get published. As with delete rights, this is administered by users so you don't have to do it yourself.") . '</p>';
      break;
    case 'admin/modules#description':
      return t('Provides users with permissions for comments on nodes they own..');
      break;
  }
}