2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-01-05 12:18:27 +01:00
|
|
|
class Champs::CheckboxChamp < Champs::BooleanChamp
|
2023-08-17 17:26:49 +02:00
|
|
|
def legend_label?
|
|
|
|
false
|
2023-01-05 12:18:27 +01:00
|
|
|
end
|
|
|
|
|
2023-10-04 14:57:28 +02:00
|
|
|
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
|
|
|
|
|
2023-07-10 14:48:33 +02:00
|
|
|
def html_label?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def single_checkbox?
|
|
|
|
true
|
|
|
|
end
|
2018-02-13 18:18:20 +01:00
|
|
|
end
|