heartcombo--simple_form/lib/simple_form.rb

52 lines
1.8 KiB
Ruby
Raw Normal View History

2009-12-09 20:25:12 +00:00
require 'simple_form/action_view_extensions/form_helper'
require 'simple_form/action_view_extensions/builder'
require 'simple_form/action_view_extensions/instance_tag'
2009-12-09 20:25:12 +00:00
module SimpleForm
autoload :Components, 'simple_form/components'
autoload :FormBuilder, 'simple_form/form_builder'
autoload :I18nCache, 'simple_form/i18n_cache'
autoload :MapType, 'simple_form/map_type'
autoload :RequiredHelpers, 'simple_form/required_helpers'
2009-12-10 17:57:24 +00:00
# Default tag used in components.
mattr_accessor :component_tag
@@component_tag = :span
# Components used by the form builder.
mattr_accessor :components
@@components = [
2009-12-10 13:01:44 +00:00
SimpleForm::Components::Wrapper, SimpleForm::Components::Label,
2009-12-10 13:23:48 +00:00
SimpleForm::Components::Input, SimpleForm::Components::Hint,
SimpleForm::Components::Error
]
2009-12-10 02:22:53 +00:00
# Series of attemps to detect a default label method for collection
mattr_accessor :collection_label_methods
2009-12-11 01:48:29 +00:00
@@collection_label_methods = [ :to_label, :name, :title, :to_s ]
2009-12-10 02:22:53 +00:00
# Series of attemps to detect a default value method for collection
mattr_accessor :collection_value_methods
@@collection_value_methods = [ :id, :to_s ]
# You can wrap all inputs in a pre-defined tag. By default is nil.
mattr_accessor :wrapper_tag
@@wrapper_tag = nil
2009-12-10 22:11:15 +00:00
# How the label text should be generated altogether with the required text.
mattr_accessor :label_text
@@label_text = lambda { |label, required| "#{required} #{label}" }
2009-12-11 13:12:57 +00:00
# Collection of methods to detect if a file type was given.
mattr_accessor :file_methods
@@file_methods = [ :file?, :public_filename ]
# Default priority for time_zone inputs.
mattr_accessor :time_zone_priority
@@time_zone_priority = nil
# Default priority for country inputs.
mattr_accessor :country_priority
@@country_priority = nil
2009-12-10 17:57:24 +00:00
end