Module: PagesCore::Admin::LocalizedFormBuilder

Includes:
LocalesHelper
Included in:
FormBuilder
Defined in:
app/helpers/pages_core/admin/localized_form_builder.rb

Instance Method Summary collapse

Methods included from LocalesHelper

#locale_direction, #locales_with_dir, #rtl_locale?, #rtl_locales

Instance Method Details

#text_area(method, options = {}) ⇒ Object



8
9
10
# File 'app/helpers/pages_core/admin/localized_form_builder.rb', line 8

def text_area(method, options = {})
  super(method, localized_form_field_options(method).merge(options))
end

#text_field(method, options = {}) ⇒ Object



12
13
14
# File 'app/helpers/pages_core/admin/localized_form_builder.rb', line 12

def text_field(method, options = {})
  super(method, localized_form_field_options(method).merge(options))
end