2011-09-20 06:11:30 +04:00
|
|
|
# Redmine - project management software
|
|
|
|
# Copyright (C) 2006-2011 Jean-Philippe Lang
|
2007-12-30 13:48:11 +03: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-09-20 06:11:30 +04:00
|
|
|
#
|
2007-12-30 13:48:11 +03:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
2011-09-20 06:11:30 +04:00
|
|
|
#
|
2007-12-30 13:48:11 +03:00
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
require 'action_view/helpers/form_helper'
|
|
|
|
|
|
|
|
class TabularFormBuilder < ActionView::Helpers::FormBuilder
|
2009-02-21 14:04:50 +03:00
|
|
|
include Redmine::I18n
|
2011-09-20 06:11:30 +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-09-20 06:11:30 +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-09-20 06:11:30 +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-09-20 06:11:30 +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-09-20 06:11:30 +04:00
|
|
|
|
2009-01-07 23:03:33 +03:00
|
|
|
# Returns a label tag for the given field
|
|
|
|
def label_for_field(field, options = {})
|
2011-08-20 10:54:00 +04:00
|
|
|
return ''.html_safe 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-09-20 06:11:30 +04:00
|
|
|
@template.content_tag("label", text.html_safe,
|
|
|
|
: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
|