demarches-normaliennes/app/models/champs/checkbox_champ.rb

38 lines
726 B
Ruby
Raw Normal View History

class Champs::CheckboxChamp < Champs::BooleanChamp
def for_export
2019-01-29 14:37:57 +01:00
true? ? 'on' : 'off'
end
2022-09-27 21:56:51 +02:00
def mandatory_blank?
2022-09-27 21:56:51 +02:00
mandatory? && (blank? || !true?)
end
def legend_label?
false
end
def self.options
[[I18n.t('activerecord.attributes.type_de_champ.type_champs.checkbox_true'), true], [I18n.t('activerecord.attributes.type_de_champ.type_champs.checkbox_false'), false]]
end
# TODO remove when normalize_checkbox_values is over
def true?
value_with_legacy == TRUE_VALUE
end
2023-07-10 14:48:33 +02:00
def html_label?
false
end
def single_checkbox?
true
end
private
# TODO remove when normalize_checkbox_values is over
def value_with_legacy
value == 'on' ? TRUE_VALUE : value
end
2018-02-13 18:18:20 +01:00
end