Class: RailsAdmin::Config::Sections::Base

Inherits:
Object
  • Object
show all
Includes:
Configurable, HasFields, HasGroups, Proxyable
Defined in:
lib/rails_admin/config/sections/base.rb

Overview

Configuration of the show view for a new object

Direct Known Subclasses

Edit, Export, List, Show

Instance Attribute Summary collapse

Attributes included from Proxyable

#bindings

Instance Method Summary collapse

Methods included from HasGroups

#group, #visible_groups

Methods included from HasFields

#all_fields, #configure, #exclude_fields, #field, #fields, #fields_of_type, #include_all_fields, #include_fields, #visible_fields

Methods included from Configurable

#has_option?, included, #register_deprecated_instance_option, #register_instance_option

Methods included from Proxyable

#with

Constructor Details

#initialize(parent) ⇒ Base

Returns a new instance of Base.



20
21
22
23
24
25
# File 'lib/rails_admin/config/sections/base.rb', line 20

def initialize(parent)
  @parent = parent
  @root = parent.root

  @abstract_model = root.abstract_model
end

Instance Attribute Details

#abstract_modelObject (readonly)

Returns the value of attribute abstract_model.



17
18
19
# File 'lib/rails_admin/config/sections/base.rb', line 17

def abstract_model
  @abstract_model
end

#parentObject (readonly)

Returns the value of attribute parent.



18
19
20
# File 'lib/rails_admin/config/sections/base.rb', line 18

def parent
  @parent
end

#rootObject (readonly)

Returns the value of attribute root.



18
19
20
# File 'lib/rails_admin/config/sections/base.rb', line 18

def root
  @root
end