2007-12-30 13:48:11 +03:00
|
|
|
require 'action_view/helpers/form_helper'
|
|
|
|
|
|
|
|
class TabularFormBuilder < ActionView::Helpers::FormBuilder
|
2009-02-21 14:04:50 +03:00
|
|
|
include Redmine::I18n
|
2007-12-30 13:48:11 +03:00
|
|
|
|
|
|
|
def initialize(object_name, object, template, options, proc)
|
|
|
|
set_language_if_valid options.delete(:lang)
|
2008-07-04 21:58:14 +04:00
|
|
|
super
|
2007-12-30 13:48:11 +03:00
|
|
|
end
|
|
|
|
|
2010-06-20 23:03:09 +04:00
|
|
|
(field_helpers - %w(radio_button hidden_field fields_for) + %w(date_select)).each do |selector|
|
2007-12-30 13:48:11 +03:00
|
|
|
src = <<-END_SRC
|
|
|
|
def #{selector}(field, options = {})
|
2009-01-07 23:03:33 +03:00
|
|
|
label_for_field(field, options) + super
|
2007-12-30 13:48:11 +03:00
|
|
|
end
|
|
|
|
END_SRC
|
|
|
|
class_eval src, __FILE__, __LINE__
|
|
|
|
end
|
|
|
|
|
|
|
|
def select(field, choices, options = {}, html_options = {})
|
2009-01-07 23:03:33 +03:00
|
|
|
label_for_field(field, options) + super
|
|
|
|
end
|
|
|
|
|
|
|
|
# Returns a label tag for the given field
|
|
|
|
def label_for_field(field, options = {})
|
|
|
|
return '' if options.delete(:no_label)
|
2009-02-27 14:32:43 +03:00
|
|
|
text = options[:label].is_a?(Symbol) ? l(options[:label]) : options[:label]
|
2009-01-07 23:03:33 +03:00
|
|
|
text ||= l(("field_" + field.to_s.gsub(/\_id$/, "")).to_sym)
|
2009-09-13 21:14:35 +04:00
|
|
|
text += @template.content_tag("span", " *", :class => "required") if options.delete(:required)
|
2009-01-07 23:03:33 +03:00
|
|
|
@template.content_tag("label", text,
|
|
|
|
:class => (@object && @object.errors[field] ? "error" : nil),
|
|
|
|
:for => (@object_name.to_s + "_" + field.to_s))
|
2007-12-30 13:48:11 +03:00
|
|
|
end
|
|
|
|
end
|