Files
2026-05-19 17:42:45 +02:00

108 lines
4.4 KiB
Ruby

# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# 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.
#
# See COPYRIGHT and LICENSE files for more details.
#++
OpenProject::CustomFieldFormat.tap do |formats|
formats.register("string",
label: :label_string,
order: 1)
formats.register("text",
label: :label_text,
order: 2,
formatter: "CustomValue::FormattableStrategy")
formats.register("link",
label: :label_link_url,
only: %w(WorkPackage Project),
order: 3,
formatter: "CustomValue::LinkStrategy")
formats.register("int",
label: :label_integer,
order: 4,
formatter: "CustomValue::IntStrategy")
formats.register("float",
label: :label_float,
order: 5,
formatter: "CustomValue::FloatStrategy")
formats.register("list",
label: :label_list,
order: 6,
multi_value_possible: true,
formatter: "CustomValue::ListStrategy")
formats.register("date",
label: :label_date,
order: 7,
formatter: "CustomValue::DateStrategy")
formats.register("bool",
label: :label_boolean,
order: 8,
formatter: "CustomValue::BoolStrategy")
formats.register("user",
label: Proc.new { User.model_name.human },
only: %w(WorkPackage TimeEntry Version Project),
edit_as: "list",
order: 9,
multi_value_possible: true,
formatter: "CustomValue::UserStrategy")
formats.register("version",
label: Proc.new { Version.model_name.human },
only: %w(WorkPackage TimeEntry Version Project),
edit_as: "list",
order: 10,
multi_value_possible: true,
formatter: "CustomValue::VersionStrategy")
# This is an internal formatter used as a fallback in case a value is not found.
# Setting the label to nil in order to avoid it becoming available for selection as a custom value format.
formats.register("empty",
label: nil,
order: 11,
formatter: "CustomValue::EmptyStrategy")
formats.register("hierarchy",
label: :label_hierarchy,
only: %w(Project WorkPackage),
order: 12,
multi_value_possible: true,
enterprise_feature: :custom_field_hierarchies,
formatter: "CustomValue::HierarchyStrategy")
formats.register("weighted_item_list",
label: :label_weighted_item_list,
only: %w(Project WorkPackage),
order: 13,
enterprise_feature: :weighted_item_lists,
formatter: "CustomValue::WeightedItemListStrategy")
formats.register("calculated_value",
label: :label_calculated_value,
only: %w(Project),
order: 14,
enterprise_feature: :calculated_values,
formatter: "CustomValue::CalculatedValueStrategy")
end