Class: KirguduBase::DynamicPages::ManagementSettings
- Defined in:
- app/models/kirgudu_base/dynamic_pages/management_settings.rb
Instance Attribute Summary collapse
-
#container_class ⇒ Object
Returns the value of attribute container_class.
-
#container_id_property ⇒ Object
Returns the value of attribute container_id_property.
-
#entry_class ⇒ Object
Returns the value of attribute entry_class.
-
#entry_id_property ⇒ Object
Returns the value of attribute entry_id_property.
-
#item_class ⇒ Object
Returns the value of attribute item_class.
-
#name ⇒ Object
Returns the value of attribute name.
Attributes inherited from Element
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ ManagementSettings
constructor
A new instance of ManagementSettings.
Methods inherited from Element
#as_json, #fix_parent_entry, #kontroller_klass, #to_external_hash
Methods included from Models::MergeableElements::ClassMethods
#get_mergeable_attributes, #mergeable_attributes
Methods included from Models::FixableElements::ClassMethods
#fixable_attributes, #get_kb_fixable_attributes
Methods included from Models::FixableElements::InstanceMethods
Methods included from Models::MergeableElements::InstanceMethods
Constructor Details
#initialize(options = {}) ⇒ ManagementSettings
Returns a new instance of ManagementSettings.
11 12 13 14 15 16 17 18 19 |
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 11 def initialize( = {}) 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() end |
Instance Attribute Details
#container_class ⇒ Object
Returns the value of attribute container_class.
23 24 25 |
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 23 def container_class @container_class end |
#container_id_property ⇒ Object
Returns the value of attribute container_id_property.
25 26 27 |
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 25 def container_id_property @container_id_property end |
#entry_class ⇒ Object
Returns the value of attribute entry_class.
24 25 26 |
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 24 def entry_class @entry_class end |
#entry_id_property ⇒ Object
Returns the value of attribute entry_id_property.
26 27 28 |
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 26 def entry_id_property @entry_id_property end |
#item_class ⇒ Object
Returns the value of attribute item_class.
22 23 24 |
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 22 def item_class @item_class end |
#name ⇒ Object
Returns the value of attribute name.
21 22 23 |
# File 'app/models/kirgudu_base/dynamic_pages/management_settings.rb', line 21 def name @name end |