2010-08-31 21:53:30 +00:00
|
|
|
class EditableShortText < EditableElement
|
|
|
|
|
|
|
|
## fields ##
|
2011-08-17 20:32:39 +00:00
|
|
|
localized_field :content
|
2010-08-31 21:53:30 +00:00
|
|
|
|
|
|
|
## methods ##
|
|
|
|
|
2011-08-17 20:32:39 +00:00
|
|
|
# def content
|
|
|
|
# self.read_attribute(:content).blank? ? self.default_content : self.read_attribute(:content)
|
|
|
|
# end
|
|
|
|
|
|
|
|
def content_with_localization
|
|
|
|
value = self.content_without_localization
|
|
|
|
value.blank? ? self.default_content : value
|
2010-08-31 21:53:30 +00:00
|
|
|
end
|
|
|
|
|
2011-08-17 20:32:39 +00:00
|
|
|
alias_method_chain :content, :localization
|
|
|
|
|
2010-08-31 21:53:30 +00:00
|
|
|
end
|