You are here

function name_token_values in Name Field 6

Implementation of hook_token_values().

File

./name.module, line 95
Defines an API for displaying and inputing names.

Code

function name_token_values($type, $object = NULL) {
  if ($type == 'field') {
    module_load_include('inc', 'name', 'includes/name.token');
    return _name_token_values($type, $object);
  }
}