Class: AbAdmin::Config::Field

Inherits:
Object
  • Object
show all
Defined in:
lib/ab_admin/config/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, options = {}, &block) ⇒ Field

Returns a new instance of Field.



95
96
97
98
99
# File 'lib/ab_admin/config/base.rb', line 95

def initialize(name, options={}, &block)
  @name = name
  @options = options
  @block = block
end

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



93
94
95
# File 'lib/ab_admin/config/base.rb', line 93

def block
  @block
end

#nameObject (readonly)

Returns the value of attribute name.



93
94
95
# File 'lib/ab_admin/config/base.rb', line 93

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options.



93
94
95
# File 'lib/ab_admin/config/base.rb', line 93

def options
  @options
end

Instance Method Details

#dataObject



101
102
103
# File 'lib/ab_admin/config/base.rb', line 101

def data
  @block || name.to_sym
end

#group?Boolean

Returns:

  • (Boolean)


105
106
107
# File 'lib/ab_admin/config/base.rb', line 105

def group?
  false
end