2011-05-30 00:11:52 +04:00
|
|
|
#-- copyright
|
|
|
|
# ChiliProject is a project management system.
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# Copyright (C) 2010-2011 the ChiliProject Team
|
2011-05-30 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04: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 22:52:25 +04:00
|
|
|
#
|
2011-05-30 00:11:52 +04:00
|
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
|
|
#++
|
|
|
|
|
2006-12-03 22:55:45 +03:00
|
|
|
class UserPreference < ActiveRecord::Base
|
|
|
|
belongs_to :user
|
2007-01-25 21:25:57 +03:00
|
|
|
serialize :others
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2006-12-03 22:55:45 +03:00
|
|
|
attr_protected :others
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2006-12-03 22:55:45 +03:00
|
|
|
def initialize(attributes = nil)
|
|
|
|
super
|
|
|
|
self.others ||= {}
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2007-04-25 19:06:20 +04:00
|
|
|
def before_save
|
|
|
|
self.others ||= {}
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2006-12-03 22:55:45 +03:00
|
|
|
def [](attr_name)
|
|
|
|
if attribute_present? attr_name
|
|
|
|
super
|
|
|
|
else
|
2007-04-25 19:06:20 +04:00
|
|
|
others ? others[attr_name] : nil
|
2006-12-03 22:55:45 +03:00
|
|
|
end
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2006-12-03 22:55:45 +03:00
|
|
|
def []=(attr_name, value)
|
|
|
|
if attribute_present? attr_name
|
|
|
|
super
|
|
|
|
else
|
2008-07-04 21:58:14 +04:00
|
|
|
h = read_attribute(:others).dup || {}
|
|
|
|
h.update(attr_name => value)
|
|
|
|
write_attribute(:others, h)
|
|
|
|
value
|
2006-12-03 22:55:45 +03:00
|
|
|
end
|
|
|
|
end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2008-03-05 18:41:54 +03:00
|
|
|
def comments_sorting; self[:comments_sorting] end
|
|
|
|
def comments_sorting=(order); self[:comments_sorting]=order end
|
2011-05-30 22:52:25 +04:00
|
|
|
|
2011-02-21 12:53:29 +03: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 22:55:45 +03:00
|
|
|
end
|