Class: Mongoid::Fields::Localized
- Defined in:
- build/mongoid-6.1/lib/mongoid/fields/localized.rb
Instance Attribute Summary
Attributes inherited from Standard
#default_val, #label, #name, #options
Instance Method Summary collapse
-
#demongoize(object) ⇒ Object
Demongoize the object based on the current locale.
-
#localized? ⇒ true, false
Is the field localized or not?.
-
#mongoize(object) ⇒ Hash
Convert the provided string into a hash for the locale.
Methods inherited from Standard
#add_atomic_changes, #constraint, #eval_default, #foreign_key?, #initialize, #lazy?, #metadata, #object_id_field?, #pre_processed?, #type
Constructor Details
This class inherits a constructor from Mongoid::Fields::Standard
Instance Method Details
#demongoize(object) ⇒ Object
Demongoize the object based on the current locale. Will look in the hash for the current locale.
17 18 19 20 21 |
# File 'build/mongoid-6.1/lib/mongoid/fields/localized.rb', line 17 def demongoize(object) if object type.demongoize(lookup(object)) end end |
#localized? ⇒ true, false
Is the field localized or not?
31 32 33 |
# File 'build/mongoid-6.1/lib/mongoid/fields/localized.rb', line 31 def localized? true end |
#mongoize(object) ⇒ Hash
Convert the provided string into a hash for the locale.
45 46 47 |
# File 'build/mongoid-6.1/lib/mongoid/fields/localized.rb', line 45 def mongoize(object) { ::I18n.locale.to_s => type.mongoize(object) } end |