function uc_file_uc_message in Ubercart 5
Implementation of hook_uc_message().
File
- uc_file/
uc_file.module, line 303 - Allows products to be associated with downloadable files.
Code
function uc_file_uc_message() {
$messages['uc_file_download_subject'] = t("File Downloads for Order [order-id]");
$messages['uc_file_download_message'] = t("Your order [order-link] at [store-name] included file download(s). You may access them with the following link(s):\n\n[file-downloads]\n\nAfter downloading these files these links will have expired. If you need to download the files again, you can login at [site-login] and visit the \"My Account\" section of the site.\n\nThanks again, \n\n[store-name]\n[site-slogan]");
return $messages;
}