Displaying author name in issue listing
hdoll - November 6, 2009 - 13:06
| Project: | E-Journal |
| Version: | 6.x-1.0-rc3 |
| Component: | Miscellaneous |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I am trying to set up an electronic journal using ejournal. On the issue page I would like to show the author name in addition to the title, similar to the ikaros journal. I have tried to modify display-issue.inc.php, but I don't know how to access the author name (it does not seem to be listed inn $article. Do you have any suggestions?
thank you.

#1
The best way (if you have ejournalauthors module enabled) is probably to edit
template/standard.inc
function theme_ejournal_article_reference:
add this call: ejournalauthors_get_authors_links($journal, $article->nid)
that produces html ouput, you can also want list of authors: ejournalauthors_get_authors($journal, $article->nid)
you can also place the same call in the template (if you have the journal object and nid):
<?phpejournalauthors_get_authors_links($journal, $article->nid);
?>
#2
Thank you for the hint. Somehow the functions don't find any authors. I'll have to keep digging.
#3
try to see if you pass correct arguments:
<?phpprint_r($journal);
?>
<?phpprint_r($article);
?>