Mercurial > hg > soundsoftware-site
view vendor/plugins/redmine_bibliography/app/helpers/my_helper.rb @ 971:b80f97c892bc cannam
Merge from branch "get_statistics"
author | Chris Cannam |
---|---|
date | Fri, 19 Oct 2012 14:47:14 +0100 |
parents | 999a6b3c4cd1 |
children |
line wrap: on
line source
module MyHelper def get_my_publications() if not User.current.author.nil? @my_publications = Publication.all(:include => :authors, :conditions => "authors.id = #{User.current.author.id}") else @my_publications = [] end end def render_publications_projects(publication) s = "" projs = [] publication.projects.each do |proj| projs << link_to(proj.name, proj) end s << projs.join(', ') s end def render_publications_authors(publication) s = "" auths = [] publication.authorships.each do |auth| auths << h(auth.name_on_paper) end s << auths.join(', ') s end end