2007-03-12 20:59:02 +03:00
|
|
|
# redMine - project management software
|
|
|
|
# Copyright (C) 2006 Jean-Philippe Lang
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
module CustomFieldsHelper
|
|
|
|
|
2008-03-26 21:49:12 +03:00
|
|
|
def custom_fields_tabs
|
|
|
|
tabs = [{:name => 'IssueCustomField', :label => :label_issue_plural},
|
2008-07-22 22:52:00 +04:00
|
|
|
{:name => 'TimeEntryCustomField', :label => :label_spent_time},
|
2008-03-26 21:49:12 +03:00
|
|
|
{:name => 'ProjectCustomField', :label => :label_project_plural},
|
|
|
|
{:name => 'UserCustomField', :label => :label_user_plural}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2007-03-12 20:59:02 +03:00
|
|
|
# Return custom field html tag corresponding to its format
|
2008-06-28 00:13:56 +04:00
|
|
|
def custom_field_tag(name, custom_value)
|
2007-03-12 20:59:02 +03:00
|
|
|
custom_field = custom_value.custom_field
|
2008-06-28 00:13:56 +04:00
|
|
|
field_name = "#{name}[custom_field_values][#{custom_field.id}]"
|
|
|
|
field_id = "#{name}_custom_field_values_#{custom_field.id}"
|
2007-03-12 20:59:02 +03:00
|
|
|
|
|
|
|
case custom_field.field_format
|
|
|
|
when "date"
|
2008-06-28 00:13:56 +04:00
|
|
|
text_field_tag(field_name, custom_value.value, :id => field_id, :size => 10) +
|
2007-03-12 20:59:02 +03:00
|
|
|
calendar_for(field_id)
|
|
|
|
when "text"
|
2008-06-28 00:13:56 +04:00
|
|
|
text_area_tag(field_name, custom_value.value, :id => field_id, :rows => 3, :style => 'width:90%')
|
2007-03-12 20:59:02 +03:00
|
|
|
when "bool"
|
2008-07-14 21:29:06 +04:00
|
|
|
check_box_tag(field_name, '1', custom_value.true?, :id => field_id) + hidden_field_tag(field_name, '0')
|
2007-03-12 20:59:02 +03:00
|
|
|
when "list"
|
2008-06-28 00:13:56 +04:00
|
|
|
blank_option = custom_field.is_required? ?
|
|
|
|
(custom_field.default_value.blank? ? "<option value=\"\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" : '') :
|
|
|
|
'<option></option>'
|
|
|
|
select_tag(field_name, blank_option + options_for_select(custom_field.possible_values, custom_value.value), :id => field_id)
|
2007-10-25 21:38:05 +04:00
|
|
|
else
|
2008-06-28 00:13:56 +04:00
|
|
|
text_field_tag(field_name, custom_value.value, :id => field_id)
|
2007-03-12 20:59:02 +03:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Return custom field label tag
|
2008-06-28 00:13:56 +04:00
|
|
|
def custom_field_label_tag(name, custom_value)
|
2007-03-12 20:59:02 +03:00
|
|
|
content_tag "label", custom_value.custom_field.name +
|
|
|
|
(custom_value.custom_field.is_required? ? " <span class=\"required\">*</span>" : ""),
|
2008-06-28 00:13:56 +04:00
|
|
|
:for => "#{name}_custom_field_values_#{custom_value.custom_field.id}",
|
2007-03-12 20:59:02 +03:00
|
|
|
:class => (custom_value.errors.empty? ? nil : "error" )
|
|
|
|
end
|
|
|
|
|
|
|
|
# Return custom field tag with its label tag
|
2008-06-28 00:13:56 +04:00
|
|
|
def custom_field_tag_with_label(name, custom_value)
|
|
|
|
custom_field_label_tag(name, custom_value) + custom_field_tag(name, custom_value)
|
2007-03-12 20:59:02 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
# Return a string used to display a custom value
|
|
|
|
def show_value(custom_value)
|
|
|
|
return "" unless custom_value
|
|
|
|
format_value(custom_value.value, custom_value.custom_field.field_format)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Return a string used to display a custom value
|
|
|
|
def format_value(value, field_format)
|
|
|
|
return "" unless value && !value.empty?
|
|
|
|
case field_format
|
|
|
|
when "date"
|
2008-01-15 21:30:21 +03:00
|
|
|
begin; format_date(value.to_date); rescue; value end
|
2007-03-12 20:59:02 +03:00
|
|
|
when "bool"
|
2009-03-01 13:00:52 +03:00
|
|
|
l(value == "1" ? :general_text_Yes : :general_text_No)
|
2007-03-12 20:59:02 +03:00
|
|
|
else
|
|
|
|
value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Return an array of custom field formats which can be used in select_tag
|
|
|
|
def custom_field_formats_for_select
|
|
|
|
CustomField::FIELD_FORMATS.sort {|a,b| a[1][:order]<=>b[1][:order]}.collect { |k| [ l(k[1][:name]), k[0] ] }
|
2006-07-29 13:32:58 +04:00
|
|
|
end
|
2006-06-28 22:11:03 +04:00
|
|
|
end
|