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.



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

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

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



103
104
105
# File 'lib/ab_admin/config/base.rb', line 103

def block
  @block
end

#nameObject (readonly)

Returns the value of attribute name.



103
104
105
# File 'lib/ab_admin/config/base.rb', line 103

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options.



103
104
105
# File 'lib/ab_admin/config/base.rb', line 103

def options
  @options
end

Instance Method Details

#dataObject



111
112
113
# File 'lib/ab_admin/config/base.rb', line 111

def data
  @block || name.to_sym
end

#group?Boolean

Returns:

  • (Boolean)


115
116
117
# File 'lib/ab_admin/config/base.rb', line 115

def group?
  false
end