Class: UserPreference
- Inherits:
-
ActiveRecord::Base
- Object
- ActiveRecord::Base
- UserPreference
- Defined in:
- app/models/user_preference.rb
Overview
Redmine - project management software Copyright (C) 2006-2016 Jean-Philippe Lang
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.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Instance Method Summary collapse
- #[](attr_name) ⇒ Object
- #[]=(attr_name, value) ⇒ Object
- #activity_scope ⇒ Object
- #activity_scope=(value) ⇒ Object
- #comments_sorting ⇒ Object
- #comments_sorting=(order) ⇒ Object
-
#initialize(attributes = nil, *args) ⇒ UserPreference
constructor
A new instance of UserPreference.
- #no_self_notified ⇒ Object
- #no_self_notified=(value) ⇒ Object
- #set_others_hash ⇒ Object
- #warn_on_leaving_unsaved ⇒ Object
- #warn_on_leaving_unsaved=(value) ⇒ Object
Constructor Details
#initialize(attributes = nil, *args) ⇒ UserPreference
Returns a new instance of UserPreference
26 27 28 29 30 31 32 33 34 35 |
# File 'app/models/user_preference.rb', line 26 def initialize(attributes=nil, *args) super if new_record? && !(attributes && attributes.key?(:hide_mail)) self.hide_mail = Setting.default_users_hide_mail? end if new_record? && !(attributes && attributes.key?(:no_self_notified)) self.no_self_notified = true end self.others ||= {} end |
Instance Method Details
#[](attr_name) ⇒ Object
41 42 43 44 45 46 47 |
# File 'app/models/user_preference.rb', line 41 def [](attr_name) if has_attribute? attr_name super else others ? others[attr_name] : nil end end |
#[]=(attr_name, value) ⇒ Object
49 50 51 52 53 54 55 56 57 58 |
# File 'app/models/user_preference.rb', line 49 def []=(attr_name, value) if has_attribute? attr_name super else h = (read_attribute(:others) || {}).dup h.update(attr_name => value) write_attribute(:others, h) value end end |
#activity_scope ⇒ Object
69 |
# File 'app/models/user_preference.rb', line 69 def activity_scope; Array(self[:activity_scope]) ; end |
#activity_scope=(value) ⇒ Object
70 |
# File 'app/models/user_preference.rb', line 70 def activity_scope=(value); self[:activity_scope]=value ; end |
#comments_sorting ⇒ Object
60 |
# File 'app/models/user_preference.rb', line 60 def comments_sorting; self[:comments_sorting] end |
#comments_sorting=(order) ⇒ Object
61 |
# File 'app/models/user_preference.rb', line 61 def comments_sorting=(order); self[:comments_sorting]=order end |
#no_self_notified ⇒ Object
66 |
# File 'app/models/user_preference.rb', line 66 def no_self_notified; (self[:no_self_notified] == true || self[:no_self_notified] == '1'); end |
#no_self_notified=(value) ⇒ Object
67 |
# File 'app/models/user_preference.rb', line 67 def no_self_notified=(value); self[:no_self_notified]=value; end |
#set_others_hash ⇒ Object
37 38 39 |
# File 'app/models/user_preference.rb', line 37 def set_others_hash self.others ||= {} end |
#warn_on_leaving_unsaved ⇒ Object
63 |
# File 'app/models/user_preference.rb', line 63 def warn_on_leaving_unsaved; self[:warn_on_leaving_unsaved] || '1'; end |
#warn_on_leaving_unsaved=(value) ⇒ Object
64 |
# File 'app/models/user_preference.rb', line 64 def warn_on_leaving_unsaved=(value); self[:warn_on_leaving_unsaved]=value; end |