engine/app/helpers/admin/custom_fields_helper.rb

18 lines
529 B
Ruby
Raw Normal View History

module Admin::CustomFieldsHelper
# def options_for_field_kind(selected = nil)
# # %w{String Text Boolean Email File Date}
# options = %w{String Text}.map do |kind|
# [t("admin.custom_fields.kind.#{kind.downcase}"), kind]
# end
# options_for_select(options, selected)
# end
def options_for_field_kind(selected = nil)
# %w{String Text Boolean Email File Date}
options = %w{String Text}.map do |kind|
[t("admin.custom_fields.kind.#{kind.downcase}"), kind]
end
end
end