2011-10-29 14:19:11 +02:00
|
|
|
#-- encoding: UTF-8
|
2011-05-29 13:11:52 -07:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
2011-05-30 20:52:25 +02:00
|
|
|
#
|
2011-05-29 13:11:52 -07:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2006-12-03 19:55:45 +00:00
|
|
|
class UserPreference < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2007-01-25 18:25:57 +00:00
|
|
|
serialize :others
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2006-12-03 19:55:45 +00:00
|
|
|
attr_protected :others
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2006-12-03 19:55:45 +00:00
|
|
|
def initialize(attributes = nil)
|
|
|
|
super
|
|
|
|
self.others ||= {}
|
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2007-04-25 15:06:20 +00:00
|
|
|
def before_save
|
|
|
|
self.others ||= {}
|
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2006-12-03 19:55:45 +00:00
|
|
|
def [](attr_name)
|
|
|
|
if attribute_present? attr_name
|
|
|
|
super
|
|
|
|
else
|
2007-04-25 15:06:20 +00:00
|
|
|
others ? others[attr_name] : nil
|
2006-12-03 19:55:45 +00:00
|
|
|
end
|
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2006-12-03 19:55:45 +00:00
|
|
|
def []=(attr_name, value)
|
|
|
|
if attribute_present? attr_name
|
|
|
|
super
|
|
|
|
else
|
2008-07-04 17:58:14 +00:00
|
|
|
h = read_attribute(:others).dup || {}
|
|
|
|
h.update(attr_name => value)
|
|
|
|
write_attribute(:others, h)
|
|
|
|
value
|
2006-12-03 19:55:45 +00:00
|
|
|
end
|
|
|
|
end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2008-03-05 15:41:54 +00:00
|
|
|
def comments_sorting; self[:comments_sorting] end
|
|
|
|
def comments_sorting=(order); self[:comments_sorting]=order end
|
2011-05-30 20:52:25 +02:00
|
|
|
|
2011-02-21 09:53:29 +00:00
|
|
|
def warn_on_leaving_unsaved; self[:warn_on_leaving_unsaved] || '1'; end
|
|
|
|
def warn_on_leaving_unsaved=(value); self[:warn_on_leaving_unsaved]=value; end
|
2006-12-03 19:55:45 +00:00
|
|
|
end
|