You are here

function party_help in Party 7

Same name and namespace in other branches
  1. 8.2 party.module \party_help()

Implements hook_help().

File

./party.module, line 10
Provides a generic CRM party entity.

Code

function party_help($path, $arg) {
  switch ($path) {
    case 'admin/help#party':
      return t("TODO: Create admin help text.");
    case 'admin/config/party/labels':
      return t("Party name label generators save a label whenever a party is created or updated. This lets you form the party's label or name in a variety of methods.");
    case 'admin/config/party/piece-order':
      return t("The tabs that display below each party can be dragged into the desired order below.");
    case 'admin/config/party/primary-fields':
      return t('Primary fields allow you to store key information quickly and accessibly for use in bulk and automated operations. For each type, select where you want to pull this information from.');
  }
}