You are here

function realname_ctools_context_converter_alter in Real Name 6

Implements hook_ctools_context_converter_alter().

File

./realname.module, line 206

Code

function realname_ctools_context_converter_alter($context, $converter, &$value) {
  if ($context->type == 'user' && $converter == 'name') {
    $value = theme('username', $context->data, array(
      'plain' => TRUE,
    ));
  }
}