You are here

function uc_file_token_values in Ubercart 6.2

Same name and namespace in other branches
  1. 5 uc_file/uc_file.module \uc_file_token_values()

Implements hook_token_values().

File

uc_file/uc_file.module, line 656

Code

function uc_file_token_values($type, $object = NULL) {
  $values = array();
  switch ($type) {
    case 'uc_file':
      if (!empty($object)) {
        $values['file-downloads'] = theme('uc_file_downloads_token', $object);
      }
      break;
  }
  return $values;
}