You are here

function better_field_descriptions_help in Better Field Descriptions 8

Same name and namespace in other branches
  1. 7 better_field_descriptions.module \better_field_descriptions_help()

Implements hook_help().

File

./better_field_descriptions.module, line 18
Module file for the Better field descriptions module.

Code

function better_field_descriptions_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name == 'help.page.better_field_descriptions') {
    return t('Allows users with certain roles to add themeable descriptions to fields in forms. The module consists of two parts. One is configuring which fields in which content types that should be configured to have a better description. The other part is editing the descriptions themselves.');
  }
}