Sha256: 30ffa582c2ed8c309fb491c85661d5eea0aadc999333526ea8c0cdcdab905b34
Contents?: true
Size: 817 Bytes
Versions: 24
Compression:
Stored size: 817 Bytes
Contents
# frozen_string_literal: true module Decidim module Log module ValueTypes # This class presents the given value as a Decidim::Scope. Check # the `DefaultPresenter` for more info on how value # presenters work. class ScopePresenter < DefaultPresenter # Public: Presents the value as a Decidim::Scope. If the scope can # be found, it shows its title. Otherwise it shows its ID. # # Returns an HTML-safe String. def present return unless value return h.translated_attribute(scope.name) if scope I18n.t("not_found", id: value, scope: "decidim.log.value_types.scope_presenter") end private def scope @scope ||= Decidim::Scope.find_by(id: value) end end end end end
Version data entries
24 entries across 24 versions & 1 rubygems