Class: VCFB::Component::Button

Inherits:
Base
  • Object
show all
Defined in:
lib/vcfb/component/button.rb

Instance Method Summary collapse

Methods inherited from Base

#collection_check_boxes, #collection_radio_buttons

Constructor Details

#initialize(form, text = nil, options = {}) ⇒ Button

Returns a new instance of Button.



4
5
6
7
8
9
10
# File 'lib/vcfb/component/button.rb', line 4

def initialize(form, text = nil, options = {})
  run_callbacks :initialize do
    @form = form
    @text = text
    @options = defined?(TagOptions::Hash) ? TagOptions::Hash.new(options) : options
  end
end

Instance Method Details

#form_element(options = {}, &block) ⇒ Object



12
13
14
# File 'lib/vcfb/component/button.rb', line 12

def form_element(options = {}, &block)
  button_tag(options, &block)
end