Sha256: aeb5713117e27a688534c367d713ec1c15269f6abb08e7752d74423b169620cb
Contents?: true
Size: 1010 Bytes
Versions: 12
Compression:
Stored size: 1010 Bytes
Contents
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ module TagsHelper # Generate tag links for use on asset index pages. #---------------------------------------------------------------------------- def tags_for_index(model) model.tag_list.inject("".html_safe) do |out, tag| query = controller.send(:current_query) || "" hashtag = "##{tag}" if query.empty? query = hashtag elsif !query.include?(hashtag) query += " #{hashtag}" end out << link_to_function(tag, "crm.search_tagged('#{query}', '#{model.class.to_s.tableize}')", title: tag) end end def tags_for_dashboard(model) content_tag(:ul) do model.tags.each do |tag| concat(content_tag(:li, tag.name)) end end end end
Version data entries
12 entries across 12 versions & 2 rubygems