15 lines
219 B
Ruby
15 lines
219 B
Ruby
class Champs::CheckboxChamp < Champ
|
|
def search_terms
|
|
if value == 'on'
|
|
[libelle]
|
|
end
|
|
end
|
|
|
|
def to_s
|
|
value == 'on' ? 'Oui' : 'Non'
|
|
end
|
|
|
|
def for_export
|
|
value == 'on' ? 'on' : 'off'
|
|
end
|
|
end
|