You are here

function uc_wishlist_help in UC Wish List 7

Implements hook_help().

File

./uc_wishlist.module, line 22
Allows users to create public shopping/wish lists.

Code

function uc_wishlist_help($path, $arg) {
  switch ($path) {

    // Main module help for the uc_wishlist module
    case 'admin/help#uc_wishlist':
      $output = '<p>' . '<strong>ABOUT</strong>' . '</p>';
      $output .= '<p>' . 'uc_wishlist is a module that adds wish list/gift registry functionality to Ubercart. It allows your customers to create and manage simple wish lists of products in your Ubercart store. Other customers can search for a particular wish list and purchase items from the list on behalf of the wish list creator. ' . '</p>';
      $output .= '<p>' . '<strong>FEATURES</strong>' . '</p>';
      $output .= '<p>' . 'This module enables users to create a gift list for use as a personal shopping list or a public gift registry. An "Add to wish list" button is added wherever there is an "Add to cart" button.' . '</p>';
      return $output;
    case 'admin/store/customers/wishlist':
      return '<p>' . 'This page displays users and their wishlists' . '</p>';
  }
}