Class: Effective::FormInputs::Reset

Inherits:
Effective::FormInput show all
Defined in:
app/models/effective/form_inputs/reset.rb

Constant Summary

Constants inherited from Effective::FormInput

Effective::FormInput::BLANK, Effective::FormInput::EXCLUSIVE_CLASS_PREFIXES, Effective::FormInput::EXCLUSIVE_CLASS_SUFFIXES

Instance Attribute Summary

Attributes inherited from Effective::FormInput

#name, #options

Instance Method Summary collapse

Methods inherited from Effective::FormInput

#feedback_options, #hint_options, #initialize, #input_group_options, #input_js_options, #label_options, #wrapper_options

Constructor Details

This class inherits a constructor from Effective::FormInput

Instance Method Details

#icon_nameObject



15
16
17
18
# File 'app/models/effective/form_inputs/reset.rb', line 15

def icon_name
  return @icon unless @icon.nil?
  @icon = options[:input].delete(:icon) || ''.html_safe
end

#input_html_optionsObject



11
12
13
# File 'app/models/effective/form_inputs/reset.rb', line 11

def input_html_options
  { class: 'btn btn-primary', type: 'reset' }
end

#to_html(&block) ⇒ Object



5
6
7
8
9
# File 'app/models/effective/form_inputs/reset.rb', line 5

def to_html(&block)
  (:button, options[:input]) do
    icon_name.present? ? (icon(icon_name) + name) : name
  end
end