You are here

function farm_help_help in farmOS 7

Implements hook_help().

File

modules/farm/farm_help/farm_help.module, line 10
Farm help module.

Code

function farm_help_help($path, $args) {
  switch ($path) {

    // Help for the /farm/help path.
    case 'farm/help':
      return '<p>' . t('This page contains links to helpful farmOS resources. For more information, visit <a href="https://farmOS.org">farmOS.org</a>.') . '</p>';
  }
}