Module: Decidim::ResourceReferenceHelper
- Defined in:
- app/helpers/decidim/resource_reference_helper.rb
Overview
Helper to print resource references.
Instance Method Summary collapse
-
#resource_reference(resource) ⇒ Object
Displays the localized reference for the given resource.
Instance Method Details
#resource_reference(resource) ⇒ Object
Displays the localized reference for the given resource.
resource - the Resource that has the reference to display. options - An optional hash of options
* class: A string of extra css classes
Returns a String.
13 14 15 16 17 |
# File 'app/helpers/decidim/resource_reference_helper.rb', line 13 def resource_reference(resource) return unless resource.respond_to?(:reference) && resource.reference.present? localized_reference(resource.reference) end |