Class: KirguduBase::DynamicPages::ManagementSettings

Inherits:
Element
  • Object
show all
Defined in:
app/models/kirgudu_base/dynamic_pages/management_settings.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ ManagementSettings

Returns a new instance of ManagementSettings.



10
11
12
13
14
15
16
17
18
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 10

def initialize(options = {})
	self.name = nil
	self.item_class = nil
	self.container_class = nil
	self.entry_class = nil
	self.container_id_property = nil
	self.entry_id_property = nil
	super(options)
end

Instance Attribute Details

#container_classObject

Returns the value of attribute container_class.



22
23
24
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 22

def container_class
  @container_class
end

#container_id_propertyObject

Returns the value of attribute container_id_property.



24
25
26
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 24

def container_id_property
  @container_id_property
end

#entry_classObject

Returns the value of attribute entry_class.



23
24
25
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 23

def entry_class
  @entry_class
end

#entry_id_propertyObject

Returns the value of attribute entry_id_property.



25
26
27
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 25

def entry_id_property
  @entry_id_property
end

#item_classObject

Returns the value of attribute item_class.



21
22
23
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 21

def item_class
  @item_class
end

#nameObject

Returns the value of attribute name.



20
21
22
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 20

def name
  @name
end