Sha256: 67bf2fa2a9303c3dd27a6fcea5641e49afeb1421398e723373d2c0630771c354

Contents?: true

Size: 620 Bytes

Versions: 47

Compression:

Stored size: 620 Bytes

Contents

module TranslationCenter
  module CenterHelper

    # returns a human readable view of the changes
    def format_change(attribute, value)
      # if value is an array then changed value
      if value.is_a? Array 
        "<span class=\"label label-info\">#{attribute}</span> changed from <span class=\"label label-important\">#{value[0]}</span> to <span class=\"label label-success\">#{value[1]}</span>".html_safe
      # else value is new
      else
        "<span class=\"label label-info\">#{attribute}</span> has new value <span class=\"label label-success\">#{value}</span>".html_safe
      end
    end
  end
end

Version data entries

47 entries across 47 versions & 1 rubygems

Version Path
translation_center-1.6.10 app/helpers/translation_center/center_helper.rb
translation_center-1.6.9 app/helpers/translation_center/center_helper.rb
translation_center-1.6.8 app/helpers/translation_center/center_helper.rb
translation_center-1.6.7 app/helpers/translation_center/center_helper.rb
translation_center-1.6.6 app/helpers/translation_center/center_helper.rb
translation_center-1.6.5 app/helpers/translation_center/center_helper.rb
translation_center-1.6.4 app/helpers/translation_center/center_helper.rb
translation_center-1.6.3 app/helpers/translation_center/center_helper.rb
translation_center-1.6.2 app/helpers/translation_center/center_helper.rb
translation_center-1.6.1 app/helpers/translation_center/center_helper.rb
translation_center-1.6.0 app/helpers/translation_center/center_helper.rb
translation_center-1.5.9 app/helpers/translation_center/center_helper.rb
translation_center-1.5.8 app/helpers/translation_center/center_helper.rb
translation_center-1.5.7 app/helpers/translation_center/center_helper.rb
translation_center-1.5.6 app/helpers/translation_center/center_helper.rb
translation_center-1.5.5 app/helpers/translation_center/center_helper.rb
translation_center-1.5.4 app/helpers/translation_center/center_helper.rb
translation_center-1.5.3 app/helpers/translation_center/center_helper.rb
translation_center-1.5.2 app/helpers/translation_center/center_helper.rb
translation_center-1.5.1 app/helpers/translation_center/center_helper.rb