You are here

function uc_recurring_subscription_help in UC Recurring Payments and Subscriptions 7.2

Same name and namespace in other branches
  1. 6.2 modules/uc_recurring_subscription/uc_recurring_subscription.module \uc_recurring_subscription_help()

Implements hook_help().

File

modules/uc_recurring_subscription/uc_recurring_subscription.module, line 14
Manage subscription/memberships.

Code

function uc_recurring_subscription_help($path, $arg) {
  switch ($path) {
    case 'admin/store/subscriptions':
    case 'admin/store/subscriptions/overview':
      return t("Below is a list of the subscription products managed by the subscription manager. A subscription is a product that members can purchase to gain access to a role on the site that is automatically renewed on a specific interval. You can add new subscription using the create subscription tab.");
  }
}