Class: Administrate::Page::Show

Inherits:
Base
  • Object
show all
Defined in:
lib/administrate/page/show.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

#association_includes, #resource_name, #resource_path

Constructor Details

#initialize(dashboard, resource) ⇒ Show

Returns a new instance of Show.



6
7
8
9
# File 'lib/administrate/page/show.rb', line 6

def initialize(dashboard, resource)
  super(dashboard)
  @resource = resource
end

Instance Attribute Details

#resourceObject (readonly)

Returns the value of attribute resource.



11
12
13
# File 'lib/administrate/page/show.rb', line 11

def resource
  @resource
end

Instance Method Details

#attributesObject



17
18
19
20
21
# File 'lib/administrate/page/show.rb', line 17

def attributes
  dashboard.show_page_attributes.map do |attr_name|
    attribute_field(dashboard, resource, attr_name, :show)
  end
end

#page_titleObject



13
14
15
# File 'lib/administrate/page/show.rb', line 13

def page_title
  dashboard.display_resource(resource)
end