2013-02-11 06:15:31 -05:00
|
|
|
module TopicsHelper
|
|
|
|
|
|
|
|
def render_topic_title(topic)
|
|
|
|
link_to(topic.title,topic.relative_url)
|
|
|
|
end
|
2013-02-11 06:18:17 -05:00
|
|
|
|
2015-02-13 06:34:22 -05:00
|
|
|
def categories_breadcrumb(topic)
|
2015-06-03 04:13:33 -04:00
|
|
|
breadcrumb = []
|
2015-02-13 06:34:22 -05:00
|
|
|
|
|
|
|
category = topic.category
|
2015-06-03 04:13:33 -04:00
|
|
|
if category && !category.uncategorized?
|
2015-02-13 06:34:22 -05:00
|
|
|
if (parent = category.parent_category)
|
|
|
|
breadcrumb.push url: parent.url, name: parent.name
|
|
|
|
end
|
|
|
|
breadcrumb.push url: category.url, name: category.name
|
|
|
|
end
|
2016-04-25 15:55:15 -04:00
|
|
|
|
|
|
|
if (tags = topic.tags).present?
|
|
|
|
tags.each do |tag|
|
2016-05-04 14:02:47 -04:00
|
|
|
url = "#{Discourse.base_url}/tags/#{tag.name}"
|
|
|
|
breadcrumb << {url: url, name: tag.name}
|
2016-04-25 15:55:15 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-03 05:06:55 -04:00
|
|
|
Plugin::Filter.apply(:topic_categories_breadcrumb, topic, breadcrumb)
|
2015-02-13 06:34:22 -05:00
|
|
|
end
|
|
|
|
|
2013-02-11 06:15:31 -05:00
|
|
|
end
|