view vendor/plugins/redmine_bibliography/app/helpers/my_helper.rb @ 1086:5ebdeb79ea9c feature_550

Add "My Page" box for my projects. Currently this also affects the layout of the non-My-Page version of the My Projects list, need to adjust that
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 23 Nov 2012 14:29:55 +0000
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