module Effective module FormBuilderInputs def effective_ckeditor_text_area(method, options_tag = nil, options = {}, html_options = {}) Inputs::EffectiveCkeditorTextArea::Input.new(@object, @object_name, @template, method, options, html_options).to_html end def effective_date_time_picker(method, options = {}) Inputs::EffectiveDateTimePicker::Input.new(@object, @object_name, @template, method, options, options).to_html end def effective_date_picker(method, options = {}) Inputs::EffectiveDatePicker::Input.new(@object, @object_name, @template, method, options, options).to_html end def effective_panel_select(method, options_tag = nil, options = {}, html_options = {}) options[:collection] = options_tag Inputs::EffectivePanelSelect::Input.new(@object, @object_name, @template, method, options, html_options).to_html end def effective_price(method, options = {}) Inputs::EffectivePrice::Input.new(@object, @object_name, @template, method, options, options).to_html end def effective_radio_buttons(method, options = {}) Inputs::EffectiveRadioButtons::Input.new(@object, @object_name, @template, method, options, options).to_html end def effective_static_control(method, options = {}) Inputs::EffectiveStaticControl::Input.new(@object, @object_name, @template, method, options, options).to_html end def effective_select(method, options_tag = nil, options = {}, html_options = {}) options[:collection] = options_tag Inputs::EffectiveSelect::Input.new(@object, @object_name, @template, method, options, html_options).to_html end def effective_tel(method, options_tag = nil, options = {}, html_options = {}) Inputs::EffectiveTel::Input.new(@object, @object_name, @template, method, options, html_options).to_html end def effective_time_picker(method, options = {}) Inputs::EffectiveTimePicker::Input.new(@object, @object_name, @template, method, options, options).to_html end def effective_url(method, options_tag = nil, options = {}, html_options = {}) Inputs::EffectiveUrl::Input.new(@object, @object_name, @template, method, options, html_options).to_html end end end