uc_file_token_list($type = 'all')Implementation of hook_token_list().
contributions/ubercart/uc_file/uc_file.module, line 271
<?php
function uc_file_token_list($type = 'all') {
if ($type == 'uc_file' || $type == 'ubercart' || $type == 'all') {
$tokens['uc_file']['file-downloads'] = t('The list of file download links (if any) associated with an order');
}
return $tokens;
}
?>