2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
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
|
2011-05-30 22:52:25 +04:00
|
|
|
|
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
|
2011-05-30 22:52:25 +04: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
|
2011-05-30 22:52:25 +04:00
|
|
|
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
|
2011-05-30 22:52:25 +04:00
|
|
|
|
|
|
|
def select(field, choices, options = {}, html_options = {})
|
2009-01-07 23:03:33 +03:00
|
|
|
label_for_field(field, options) + super
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2009-01-07 23:03:33 +03:00
|
|
|
# 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)
|
2011-05-30 22:52:25 +04:00
|
|
|
@template.content_tag("label", text,
|
|
|
|
:class => (@object && @object.errors[field] ? "error" : nil),
|
2009-01-07 23:03:33 +03:00
|
|
|
:for => (@object_name.to_s + "_" + field.to_s))
|
2007-12-30 13:48:11 +03:00
|
|
|
end
|
|
|
|
end
|