Class: ActiveScaffold::Config::Base

Inherits:
Object
  • Object
show all
Extended by:
ActiveScaffold::Configurable
Includes:
ActiveScaffold::Configurable
Defined in:
lib/active_scaffold/config/base.rb

Direct Known Subclasses

Core, Delete, FieldSearch, Form, List, Mark, Nested, Search, Show, Subform

Defined Under Namespace

Classes: UserSettings

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ActiveScaffold::Configurable

configure, method_missing

Constructor Details

#initialize(core_config) ⇒ Base

Returns a new instance of Base.



6
7
8
9
# File 'lib/active_scaffold/config/base.rb', line 6

def initialize(core_config)
  @core = core_config
  @action_group = self.class.action_group.clone if self.class.action_group
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ActiveScaffold::Configurable

Instance Attribute Details

#action_groupObject

action_group this action should belong to



42
43
44
# File 'lib/active_scaffold/config/base.rb', line 42

def action_group
  @action_group
end

#userObject

the user property gets set to the instantiation of the local UserSettings class during the automatic instantiation of this class.



35
36
37
# File 'lib/active_scaffold/config/base.rb', line 35

def user
  @user
end

Class Method Details

.inherited(subclass) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/active_scaffold/config/base.rb', line 11

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_typeObject

delegate



27
# File 'lib/active_scaffold/config/base.rb', line 27

def crud_type; self.class.crud_type end

#formatsObject



55
56
57
# File 'lib/active_scaffold/config/base.rb', line 55

def formats
  @formats ||= []
end

#formats=(val) ⇒ Object



59
60
61
# File 'lib/active_scaffold/config/base.rb', line 59

def formats=(val)
  @formats=val
end

#label(model = nil) ⇒ Object



29
30
31
32
# File 'lib/active_scaffold/config/base.rb', line 29

def label(model = nil)
  model ||= @core.label(:count => 1)
  @label.nil? ? model : as_(@label, :model => model)
end