Module: Cms::Behaviors::Hiding::MacroMethods
- Defined in:
- lib/cms/behaviors/hiding.rb
Instance Method Summary collapse
Instance Method Details
#hideable? ⇒ Boolean
8 9 10 |
# File 'lib/cms/behaviors/hiding.rb', line 8 def hideable? !!@is_hideable end |
#is_hideable(options = {}) ⇒ Object
11 12 13 14 15 16 17 18 |
# File 'lib/cms/behaviors/hiding.rb', line 11 def is_hideable(={}) @is_hideable = true extend ClassMethods include InstanceMethods named_scope :hidden, :conditions => {:hidden => true} named_scope :not_hidden, :conditions => {:hidden => false} end |