custom_fields_helper.rb
120 lines
| 5.7 KiB
| text/x-ruby
|
RubyLexer
|
r8090 | # encoding: utf-8 | ||
# | ||||
|
r5094 | # Redmine - project management software | ||
# Copyright (C) 2006-2011 Jean-Philippe Lang | ||||
|
r330 | # | ||
# 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. | ||||
|
r6582 | # | ||
|
r330 | # 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. | ||||
|
r6582 | # | ||
|
r330 | # 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 | ||||
|
r1278 | def custom_fields_tabs | ||
|
r2757 | tabs = [{:name => 'IssueCustomField', :partial => 'custom_fields/index', :label => :label_issue_plural}, | ||
{:name => 'TimeEntryCustomField', :partial => 'custom_fields/index', :label => :label_spent_time}, | ||||
{:name => 'ProjectCustomField', :partial => 'custom_fields/index', :label => :label_project_plural}, | ||||
|
r2950 | {:name => 'VersionCustomField', :partial => 'custom_fields/index', :label => :label_version_plural}, | ||
|
r2757 | {:name => 'UserCustomField', :partial => 'custom_fields/index', :label => :label_user_plural}, | ||
|
r2831 | {:name => 'GroupCustomField', :partial => 'custom_fields/index', :label => :label_group_plural}, | ||
|
r2838 | {:name => 'TimeEntryActivityCustomField', :partial => 'custom_fields/index', :label => TimeEntryActivity::OptionName}, | ||
{:name => 'IssuePriorityCustomField', :partial => 'custom_fields/index', :label => IssuePriority::OptionName}, | ||||
{:name => 'DocumentCategoryCustomField', :partial => 'custom_fields/index', :label => DocumentCategory::OptionName} | ||||
|
r1278 | ] | ||
end | ||||
|
r6582 | |||
|
r330 | # Return custom field html tag corresponding to its format | ||
|
r1578 | def custom_field_tag(name, custom_value) | ||
|
r330 | custom_field = custom_value.custom_field | ||
|
r1578 | field_name = "#{name}[custom_field_values][#{custom_field.id}]" | ||
field_id = "#{name}_custom_field_values_#{custom_field.id}" | ||||
|
r3561 | |||
field_format = Redmine::CustomFieldFormat.find_by_name(custom_field.field_format) | ||||
|
r5094 | case field_format.try(:edit_as) | ||
|
r330 | when "date" | ||
|
r6582 | text_field_tag(field_name, custom_value.value, :id => field_id, :size => 10) + | ||
|
r330 | calendar_for(field_id) | ||
when "text" | ||||
|
r1578 | text_area_tag(field_name, custom_value.value, :id => field_id, :rows => 3, :style => 'width:90%') | ||
|
r330 | when "bool" | ||
|
r2828 | hidden_field_tag(field_name, '0') + check_box_tag(field_name, '1', custom_value.true?, :id => field_id) | ||
|
r330 | when "list" | ||
|
r1578 | blank_option = custom_field.is_required? ? | ||
|
r6582 | (custom_field.default_value.blank? ? "<option value=\"\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" : '') : | ||
|
r1578 | '<option></option>' | ||
|
r8353 | select_tag(field_name, blank_option.html_safe + options_for_select(custom_field.possible_values_options(custom_value.customized), custom_value.value), :id => field_id) | ||
|
r857 | else | ||
|
r1578 | text_field_tag(field_name, custom_value.value, :id => field_id) | ||
|
r330 | end | ||
end | ||||
|
r6582 | |||
|
r330 | # Return custom field label tag | ||
|
r1578 | def custom_field_label_tag(name, custom_value) | ||
|
r6207 | content_tag "label", h(custom_value.custom_field.name) + | ||
|
r6355 | (custom_value.custom_field.is_required? ? " <span class=\"required\">*</span>".html_safe : ""), | ||
|
r1578 | :for => "#{name}_custom_field_values_#{custom_value.custom_field.id}", | ||
|
r330 | :class => (custom_value.errors.empty? ? nil : "error" ) | ||
end | ||||
|
r6582 | |||
|
r330 | # Return custom field tag with its label tag | ||
|
r1578 | def custom_field_tag_with_label(name, custom_value) | ||
custom_field_label_tag(name, custom_value) + custom_field_tag(name, custom_value) | ||||
|
r330 | end | ||
|
r6582 | |||
|
r5236 | def custom_field_tag_for_bulk_edit(name, custom_field, projects=nil) | ||
|
r3364 | field_name = "#{name}[custom_field_values][#{custom_field.id}]" | ||
field_id = "#{name}_custom_field_values_#{custom_field.id}" | ||||
|
r3561 | field_format = Redmine::CustomFieldFormat.find_by_name(custom_field.field_format) | ||
|
r5094 | case field_format.try(:edit_as) | ||
|
r3164 | when "date" | ||
|
r6582 | text_field_tag(field_name, '', :id => field_id, :size => 10) + | ||
|
r3164 | calendar_for(field_id) | ||
when "text" | ||||
text_area_tag(field_name, '', :id => field_id, :rows => 3, :style => 'width:90%') | ||||
when "bool" | ||||
select_tag(field_name, options_for_select([[l(:label_no_change_option), ''], | ||||
[l(:general_text_yes), '1'], | ||||
[l(:general_text_no), '0']]), :id => field_id) | ||||
when "list" | ||||
|
r5234 | select_tag(field_name, options_for_select([[l(:label_no_change_option), '']] + custom_field.possible_values_options(projects)), :id => field_id) | ||
|
r3164 | else | ||
text_field_tag(field_name, '', :id => field_id) | ||||
end | ||||
end | ||||
|
r330 | |||
# 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 | ||||
|
r6582 | |||
|
r330 | # Return a string used to display a custom value | ||
def format_value(value, field_format) | ||||
|
r3559 | Redmine::CustomFieldFormat.format_value(value, field_format) # Proxy | ||
|
r330 | end | ||
# Return an array of custom field formats which can be used in select_tag | ||||
|
r5152 | def custom_field_formats_for_select(custom_field) | ||
Redmine::CustomFieldFormat.as_select(custom_field.class.customized_class.name) | ||||
|
r10 | end | ||
|
r6582 | |||
|
r4366 | # Renders the custom_values in api views | ||
def render_api_custom_values(custom_values, api) | ||||
api.array :custom_fields do | ||||
custom_values.each do |custom_value| | ||||
api.custom_field :id => custom_value.custom_field_id, :name => custom_value.custom_field.name do | ||||
api.value custom_value.value | ||||
end | ||||
end | ||||
end unless custom_values.empty? | ||||
end | ||||
|
r2 | end | ||