discourse/app/helpers/topics_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
650 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module TopicsHelper
2017-04-10 13:59:03 -04:00
include ApplicationHelper
def render_topic_title(topic)
2017-07-21 14:24:28 -04:00
link_to(Emoji.gsub_emoji_to_unicode(topic.title), topic.relative_url)
end
2013-02-11 06:18:17 -05:00
def categories_breadcrumb(topic)
breadcrumb = []
category = topic.category
if category && !category.uncategorized?
breadcrumb.push(url: category.url, name: category.name, color: category.color)
while category = category.parent_category
breadcrumb.prepend(url: category.url, name: category.name, color: category.color)
end
end
Plugin::Filter.apply(:topic_categories_breadcrumb, topic, breadcrumb)
end
end