Module: ActionView::Helpers::ActiveModelInstanceTag
- Defined in:
- actionpack/lib/action_view/helpers/active_model_helper.rb
Instance Method Summary (collapse)
- - (Object) error_message
- - (Object) error_wrapping(html_tag)
- - (Object) object
- - (Object) tag(type, options)
Instance Method Details
- (Object) error_message
55 56 57 |
# File 'actionpack/lib/action_view/helpers/active_model_helper.rb', line 55 def object.errors[@method_name] end |
- (Object) error_wrapping(html_tag)
47 48 49 50 51 52 53 |
# File 'actionpack/lib/action_view/helpers/active_model_helper.rb', line 47 def error_wrapping(html_tag) if object_has_errors? Base.field_error_proc.call(html_tag, self) else html_tag end end |
- (Object) object
32 33 34 35 36 37 |
# File 'actionpack/lib/action_view/helpers/active_model_helper.rb', line 32 def object @active_model_object ||= begin object = super object.respond_to?(:to_model) ? object.to_model : object end end |
- (Object) tag(type, options)
43 44 45 |
# File 'actionpack/lib/action_view/helpers/active_model_helper.rb', line 43 def tag(type, , *) tag_generate_errors?() ? error_wrapping(super) : super end |