You are here

function farm_settings_help in farmOS 2.x

Implements hook_help().

File

modules/core/settings/farm_settings.module, line 14
Contains farm_settings.module.

Code

function farm_settings_help($route_name, RouteMatchInterface $route_match) {
  $output = '';

  // Modules form.
  if ($route_name == 'farm_settings.modules_form') {
    $output .= '<p>' . t('Select the core and community farmOS modules that you would like to be installed.') . '</p>';
  }
  return $output;
}