You are here

function farm_group_help in farmOS 7

Implements hook_help().

File

modules/farm/farm_group/farm_group.module, line 12

Code

function farm_group_help($path, $arg) {
  if ($path == 'farm/assets/groups') {
    return t('Groups are a special asset type that can be used to organize other assets. For more information, see the <a href="@groups_doc_url">Groups</a> documentation.', array(
      '@groups_doc_url' => url('https://farmOS.org/guide/assets/groups'),
    ));
  }
}