You are here

function uc_file_help in Ubercart 6.2

Same name and namespace in other branches
  1. 8.4 uc_file/uc_file.module \uc_file_help()

Implements hook_help().

File

uc_file/uc_file.module, line 32

Code

function uc_file_help($path, $arg) {
  if ($path == 'node/%/edit/features' && $arg[4] == 'file') {
    return t('Add file downloads through this page and then use the <a href="!url">conditional actions interface</a> to limit which orders they are applied to. Most important is the order status on which file download access will be triggered.', array(
      '!url' => url(CA_UI_PATH),
    ));
  }
}