Sha256: 34ea99687964d10122abcdd808c7f05dbed843b22cb3e02be5cbca85e8aeedd3

Contents?: true

Size: 1.23 KB

Versions: 12

Compression:

Stored size: 1.23 KB

Contents

module Alchemy
  module Admin
    module ContentsHelper
      include Alchemy::Admin::BaseHelper

      # Renders the name of elements content.
      #
      # Displays a warning icon if content is missing its definition.
      #
      # Displays a mandatory field indicator, if the content has validations.
      #
      def render_content_name(content)
        if content.blank?
          warning('Content is nil')
          return
        end

        content_name = content.name_for_label

        if content.definition.blank?
          warning("Content #{content.name} is missing its definition")

          icon = hint_with_tooltip(
            Alchemy.t(:content_definition_missing),
            class: 'inline warning icon'
          )

          content_name = "#{icon} #{content_name}".html_safe
        end

        if content.has_validations?
          "#{content_name}<span class='validation_indicator'>*</span>".html_safe
        else
          content_name
        end
      end

      # Renders the label and a remove link for a content.
      def content_label(content)
        content_tag :label do
          [render_hint_for(content), render_content_name(content)].compact.join('&nbsp;').html_safe
        end
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
alchemy_cms-3.6.7 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.6.6 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.6.5 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.6.4 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.6.3 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.6.2 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.6.1 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-4.0.0.beta app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.6.0 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.5.0 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.5.0.rc2 app/helpers/alchemy/admin/contents_helper.rb
alchemy_cms-3.5.0.rc1 app/helpers/alchemy/admin/contents_helper.rb