discourse/app/helpers/topics_helper.rb
Régis Hanol 96b64df4d4 FIX: use schema.org's BreadcrumList
The data-vocabulary.org schema is being deprecated.
We're now using the BreadcrumList data from the latest and greatest schema.org.

FIX: categories_breadcrumb helper to support more than 2 levels of categories.
2020-01-21 22:27:21 +01:00

25 lines
604 B
Ruby

# frozen_string_literal: true
module TopicsHelper
include ApplicationHelper
def render_topic_title(topic)
link_to(Emoji.gsub_emoji_to_unicode(topic.title), topic.relative_url)
end
def categories_breadcrumb(topic)
breadcrumb = []
category = topic.category
if category && !category.uncategorized?
breadcrumb.push(url: category.url, name: category.name)
while category = category.parent_category
breadcrumb.prepend(url: category.url, name: category.name)
end
end
Plugin::Filter.apply(:topic_categories_breadcrumb, topic, breadcrumb)
end
end