function theme_apachesolr_breadcrumb_uid in Apache Solr Search 5.2
Same name and namespace in other branches
- 5 apachesolr_search.module \theme_apachesolr_breadcrumb_uid()
- 6 apachesolr_search.module \theme_apachesolr_breadcrumb_uid()
- 6.2 apachesolr_search.module \theme_apachesolr_breadcrumb_uid()
Return the username from $uid
1 theme call to theme_apachesolr_breadcrumb_uid()
- apachesolr_search_get_username in ./apachesolr_search.module 
- Callback function for the 'Filter by name' facet block.
File
- ./apachesolr_search.module, line 1054 
- Provides a content search implementation for node content for use with the Apache Solr search application.
Code
function theme_apachesolr_breadcrumb_uid($field) {
  if ($field['#value'] == 0) {
    return variable_get('anonymous', t('Anonymous'));
  }
  else {
    return db_result(db_query("SELECT name FROM {users} WHERE uid = %d", $field['#value']));
  }
}