You are here

function better_login_form_config_help in Better Login Form Configuration 8.2

Implements hook_help().

File

./better_login_form_config.module, line 158
Contains Drupal\better_login_form_config.

Code

function better_login_form_config_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the better_login_form_config module.
    case 'help.page.better_login_form_config':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('You can configure the label, description and login button of the default user login form.') . '</p>';
      return $output;
  }
}