Class: Decidim::Log::ValueTypes::ScopeTypePresenter

Inherits:
DefaultPresenter show all
Defined in:
decidim-core/app/presenters/decidim/log/value_types/scope_type_presenter.rb

Overview

This class presents the given value as a Decidim::ScopeType. Check the ‘DefaultPresenter` for more info on how value presenters work.

Instance Method Summary collapse

Methods inherited from DefaultPresenter

#initialize

Constructor Details

This class inherits a constructor from Decidim::Log::ValueTypes::DefaultPresenter

Instance Method Details

#presentObject

Public: Presents the value as a Percentage. If the scope can be found, it shows its title. Otherwise it shows its ID.

Returns an HTML-safe String.



14
15
16
17
18
19
# File 'decidim-core/app/presenters/decidim/log/value_types/scope_type_presenter.rb', line 14

def present
  return unless value
  return h.translated_attribute(scope_type.name) if scope_type

  I18n.t("not_found", id: value, scope: "decidim.log.value_types.scope_type_presenter")
end