From d22723ed04297175a22b75fec806fa6a1734f299 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Fri, 16 Apr 2010 15:33:55 +0000 Subject: [PATCH] Refactor: Move method git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3673 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/helpers/custom_fields_helper.rb | 10 +--------- lib/redmine/custom_field_format.rb | 12 ++++++++++++ 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/app/helpers/custom_fields_helper.rb b/app/helpers/custom_fields_helper.rb index f3fcc1fc..f75c8938 100644 --- a/app/helpers/custom_fields_helper.rb +++ b/app/helpers/custom_fields_helper.rb @@ -95,15 +95,7 @@ module CustomFieldsHelper # 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" - begin; format_date(value.to_date); rescue; value end - when "bool" - l(value == "1" ? :general_text_Yes : :general_text_No) - else - value - end + Redmine::CustomFieldFormat.format_value(value, field_format) # Proxy end # Return an array of custom field formats which can be used in select_tag diff --git a/lib/redmine/custom_field_format.rb b/lib/redmine/custom_field_format.rb index 6d42dfba..29d82b44 100644 --- a/lib/redmine/custom_field_format.rb +++ b/lib/redmine/custom_field_format.rb @@ -61,6 +61,18 @@ module Redmine [ l(custom_field_format.label), custom_field_format.name ] } end + + def format_value(value, field_format) + return "" unless value && !value.empty? + case field_format + when "date" + begin; format_date(value.to_date); rescue; value end + when "bool" + l(value == "1" ? :general_text_Yes : :general_text_No) + else + value + end + end end end end -- 2.11.0