Sha256: c56523344a07f357146690cb6b946819abe7671da1345e3b654bddad5d6a05a6

Contents?: true

Size: 940 Bytes

Versions: 7

Compression:

Stored size: 940 Bytes

Contents

module ErrorMessagesHelper
  # Render error messages for the given objects. The :message and :header_message options are allowed.
  def error_messages_for(*objects)
    options = objects.extract_options! 
    options[:header_message] ||= "Invalid Fields"
    options[:message] ||= "Correct the following errors and try again."
    messages = objects.compact.map { |o| o.errors.full_messages }.flatten
    unless messages.empty?
      content_tag(:div, :class => "error_messages") do
        list_items = messages.map { |msg| content_tag(:li, msg) }
        content_tag(:h2, options[:header_message]) + content_tag(:p, options[:message]) + content_tag(:ul, list_items.join.html_safe)
      end
    end
  end
  
  module FormBuilderAdditions
    def error_messages(options = {})
      @template.error_messages_for(@object, options)
    end
  end
end

ActionView::Helpers::FormBuilder.send(:include, ErrorMessagesHelper::FormBuilderAdditions)

Version data entries

7 entries across 7 versions & 4 rubygems

Version Path
vileda-generators-0.1.0 lib/generators/vileda/layout/templates/error_messages_helper.rb
niftier-generators-0.1.2 lib/generators/niftier/layout/templates/error_messages_helper.rb
niftier-generators-0.1.1 lib/generators/niftier/layout/templates/error_messages_helper.rb
niftier-generators-0.1.0 lib/generators/niftier/layout/templates/error_messages_helper.rb
corntrace-nifty-generators-0.4.1 lib/generators/nifty/layout/templates/error_messages_helper.rb
corntrace-nifty-generators-0.4.0 lib/generators/nifty/layout/templates/error_messages_helper.rb
nifty-generators-0.4.0 lib/generators/nifty/layout/templates/error_messages_helper.rb