Class: ActiveScaffold::Config::Base
- Extended by:
- ActiveScaffold::Configurable
- Includes:
- ActiveScaffold::Configurable
- Defined in:
- lib/active_scaffold/config/base.rb
Defined Under Namespace
Classes: UserSettings
Instance Attribute Summary collapse
-
#action_group ⇒ Object
action_group this action should belong to.
-
#user ⇒ Object
the user property gets set to the instantiation of the local UserSettings class during the automatic instantiation of this class.
Class Method Summary collapse
Instance Method Summary collapse
-
#crud_type ⇒ Object
delegate.
- #formats ⇒ Object
- #formats=(val) ⇒ Object
-
#initialize(core_config) ⇒ Base
constructor
A new instance of Base.
- #label(model = nil) ⇒ Object
Methods included from ActiveScaffold::Configurable
Constructor Details
#initialize(core_config) ⇒ Base
Returns a new instance of Base.
6 7 8 |
# File 'lib/active_scaffold/config/base.rb', line 6 def initialize(core_config) @core = core_config end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class ActiveScaffold::Configurable
Instance Attribute Details
#action_group ⇒ Object
action_group this action should belong to
41 42 43 |
# File 'lib/active_scaffold/config/base.rb', line 41 def action_group @action_group end |
#user ⇒ Object
the user property gets set to the instantiation of the local UserSettings class during the automatic instantiation of this class.
34 35 36 |
# File 'lib/active_scaffold/config/base.rb', line 34 def user @user end |
Class Method Details
.inherited(subclass) ⇒ Object
10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/active_scaffold/config/base.rb', line 10 def self.inherited(subclass) class << subclass # the crud type of the action. possible values are :create, :read, :update, :delete, and nil. # this is not a setting for the developer. it's self-description for the actions. def crud_type; @crud_type; end protected def crud_type=(val) raise ArgumentError, "unknown CRUD type #{val}" unless [:create, :read, :update, :delete].include?(val.to_sym) @crud_type = val.to_sym end end end |
Instance Method Details
#crud_type ⇒ Object
delegate
26 |
# File 'lib/active_scaffold/config/base.rb', line 26 def crud_type; self.class.crud_type end |
#formats ⇒ Object
54 55 56 |
# File 'lib/active_scaffold/config/base.rb', line 54 def formats @formats ||= [] end |
#formats=(val) ⇒ Object
58 59 60 |
# File 'lib/active_scaffold/config/base.rb', line 58 def formats=(val) @formats=val end |
#label(model = nil) ⇒ Object
28 29 30 31 |
# File 'lib/active_scaffold/config/base.rb', line 28 def label(model = nil) model ||= @core.label(:count => 1) @label.nil? ? model : as_(@label, :model => model) end |