2011-02-01 02:47:25 +00:00
|
|
|
class AttributeModel
|
|
|
|
|
|
|
|
include Mongoid::Document
|
2011-03-08 09:25:46 +00:00
|
|
|
include Mongoid::Timestamps
|
2011-02-01 02:47:25 +00:00
|
|
|
|
|
|
|
field :key
|
|
|
|
field :i18n_variable_id, :type => BSON::ObjectId, :index => true
|
|
|
|
field :markup
|
|
|
|
field :locale, :type => Boolean
|
|
|
|
field :list_options, :type => Array
|
2011-05-02 04:07:31 +00:00
|
|
|
field :built_in, :type => Boolean, :default => false
|
|
|
|
field :disabled, :type => Boolean, :default => false
|
2011-02-01 02:47:25 +00:00
|
|
|
|
2011-11-12 09:54:45 +00:00
|
|
|
embedded_in :user_attribute_model
|
2011-02-01 02:47:25 +00:00
|
|
|
validates_uniqueness_of :key
|
|
|
|
|
|
|
|
# Destroy the i18n_variable
|
|
|
|
def destroy_i18n_variable
|
|
|
|
self.i18n_variable.destroy rescue nil
|
|
|
|
end
|
|
|
|
|
|
|
|
# Get the i18n_variable
|
|
|
|
def i18n_variable
|
|
|
|
@i18n_variable ||= I18nVariable.find(self.i18n_variable_id) rescue nil
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update or create the i18n_variable record
|
|
|
|
def i18n_variable=(attr)
|
|
|
|
if self.i18n_variable_id
|
|
|
|
self.i18n_variable.update_attributes(attr)
|
|
|
|
else
|
2011-02-01 07:12:23 +00:00
|
|
|
var = I18nVariable.new(attr.merge({:key => self.key, :document_class => self.class, :parent_id => self.user_attribute_model.i18n_variable_id}))
|
2011-02-01 02:47:25 +00:00
|
|
|
var.save
|
|
|
|
self.i18n_variable_id = var.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Convert the string list_options into an array
|
|
|
|
def select_list_options=(var)
|
|
|
|
self.list_options = var.gsub(' ', '').split(',')
|
|
|
|
end
|
|
|
|
|
|
|
|
# Convert the array list_options into a string
|
|
|
|
def select_list_options
|
|
|
|
self.list_options.to_a.join(', ')
|
|
|
|
end
|
|
|
|
|
|
|
|
# Check if the attribute is set to be destroyed
|
|
|
|
def should_destroy?
|
|
|
|
should_destroy.to_i == 1 rescue nil
|
|
|
|
end
|
2011-05-02 04:07:31 +00:00
|
|
|
|
|
|
|
def is_built_in?
|
|
|
|
self.built_in
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_disabled?
|
|
|
|
self.disabled
|
|
|
|
end
|
2011-02-01 02:47:25 +00:00
|
|
|
|
|
|
|
end
|