Module: Bh::Form::StaticControlHelper

Includes:
BaseHelper
Defined in:
lib/bh/core_ext/rails/form/static_control_helper.rb

Instance Method Summary collapse

Methods included from Helpers

#alert_box, #bootstrap_css, #bootstrap_js, #bootstrap_theme_css, #button, #button_to, #dropdown, #font_awesome_css, #glyphicon, #horizontal, #icon, #link_to, #modal, #nav, #navbar, #panel, #panel_row, #progress_bar, #vertical

Instance Method Details

#static_control(text_or_options_with_block = nil, options = {}, &block) ⇒ Object



8
9
10
11
12
13
14
15
# File 'lib/bh/core_ext/rails/form/static_control_helper.rb', line 8

def static_control(text_or_options_with_block = nil, options = {}, &block)
  text, options = if block_given?
    [@template.capture(&block), text_or_options_with_block]
  else
    [text_or_options_with_block, options]
  end
  static_control_string text, options || {}
end