function biblio_get_style in Bibliography Module 6
Same name and namespace in other branches
- 6.2 biblio.module \biblio_get_style()
- 7 biblio.module \biblio_get_style()
- 7.2 biblio.module \biblio_get_style()
9 calls to biblio_get_style()
- biblio_handler_citation::option_definition in views/
biblio_handler_citation.inc - biblio_handler_field_contributor::option_definition in views/
biblio_handler_field_contributor.inc - biblio_show_results in ./
biblio.pages.inc - biblio_show_results takes the query results from biblio_db_search and adds some controls to the page then loops through the results applying the selected style to each entry
- biblio_view in ./
biblio.module - Implementation of hook_view().
- biblio_view_inline in ./
biblio.pages.inc
File
- ./
biblio.module, line 2394
Code
function biblio_get_style() {
global $user;
if (isset($user->biblio_user_style) && $user->biblio_user_style != "system") {
return $user->biblio_user_style;
}
return variable_get('biblio_style', 'cse');
}