You are here

function apachesolr_file_result in Apache Solr File 7

1 string reference to 'apachesolr_file_result'
apachesolr_file_apachesolr_entity_info_alter in ./apachesolr_file.module

File

./apachesolr_file.module, line 103

Code

function apachesolr_file_result($doc, &$result, &$extra) {
  $result += array(
    'type' => file_entity_type_get_name($doc->bundle),
    'user' => theme('username', array(
      'account' => $doc,
    )),
    'date' => isset($doc->created) ? $doc->created : 0,
    'uid' => $doc->is_uid,
  );
}