Module: VCFB::Component

Defined in:
lib/vcfb.rb,
lib/vcfb/component/base.rb,
lib/vcfb/component/form.rb,
lib/vcfb/component/label.rb,
lib/vcfb/component/button.rb,
lib/vcfb/component/select.rb,
lib/vcfb/component/submit.rb,
lib/vcfb/component/check_box.rb,
lib/vcfb/component/text_area.rb,
lib/vcfb/component/url_field.rb,
lib/vcfb/component/date_field.rb,
lib/vcfb/component/file_field.rb,
lib/vcfb/component/text_field.rb,
lib/vcfb/component/time_field.rb,
lib/vcfb/component/week_field.rb,
lib/vcfb/component/color_field.rb,
lib/vcfb/component/date_select.rb,
lib/vcfb/component/email_field.rb,
lib/vcfb/component/month_field.rb,
lib/vcfb/component/range_field.rb,
lib/vcfb/component/time_select.rb,
lib/vcfb/component/number_field.rb,
lib/vcfb/component/radio_button.rb,
lib/vcfb/component/search_field.rb,
lib/vcfb/component/datetime_field.rb,
lib/vcfb/component/password_field.rb,
lib/vcfb/component/rich_text_area.rb,
lib/vcfb/component/weekday_select.rb,
lib/vcfb/component/base_collection.rb,
lib/vcfb/component/datetime_select.rb,
lib/vcfb/component/telephone_field.rb,
lib/vcfb/component/time_zone_select.rb,
lib/vcfb/component/collection_select.rb,
lib/vcfb/component/collection_check_boxes.rb,
lib/vcfb/component/collection_radio_buttons.rb,
lib/vcfb/component/grouped_collection_select.rb

Defined Under Namespace

Classes: Base, BaseCollection, Button, CheckBox, CollectionCheckBoxes, CollectionRadioButtons, CollectionSelect, ColorField, DateField, DateSelect, DatetimeField, DatetimeSelect, EmailField, FileField, Form, GroupedCollectionSelect, Label, MonthField, NumberField, PasswordField, RadioButton, RangeField, RichTextArea, SearchField, Select, Submit, TelephoneField, TextArea, TextField, TimeField, TimeSelect, TimeZoneSelect, UrlField, WeekField, WeekdaySelect

Class Method Summary collapse

Class Method Details

.setup!Object



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/vcfb.rb', line 30

def self.setup!
  autoload :Base, "vcfb/component/base"
  autoload :BaseCollection, "vcfb/component/base_collection"
  autoload :Button, "vcfb/component/button"
  autoload :CheckBox, "vcfb/component/check_box"
  autoload :CollectionCheckBoxes, "vcfb/component/collection_check_boxes"
  autoload :CollectionRadioButtons, "vcfb/component/collection_radio_buttons"
  autoload :CollectionSelect, "vcfb/component/collection_select"
  autoload :ColorField, "vcfb/component/color_field"
  autoload :DateField, "vcfb/component/date_field"
  autoload :DateSelect, "vcfb/component/date_select"
  autoload :DatetimeField, "vcfb/component/datetime_field"
  autoload :DatetimeSelect, "vcfb/component/datetime_select"
  autoload :EmailField, "vcfb/component/email_field"
  autoload :FileField, "vcfb/component/file_field"
  autoload :Form, "vcfb/component/form"
  autoload :GroupedCollectionSelect, "vcfb/component/grouped_collection_select"
  autoload :Label, "vcfb/component/label"
  autoload :MonthField, "vcfb/component/month_field"
  autoload :NumberField, "vcfb/component/number_field"
  autoload :PasswordField, "vcfb/component/password_field"
  autoload :RadioButton, "vcfb/component/radio_button"
  autoload :RangeField, "vcfb/component/range_field"
  autoload :RichTextArea, "vcfb/component/rich_text_area"
  autoload :SearchField, "vcfb/component/search_field"
  autoload :Select, "vcfb/component/select"
  autoload :Submit, "vcfb/component/submit"
  autoload :TelephoneField, "vcfb/component/telephone_field"
  autoload :TextArea, "vcfb/component/text_area"
  autoload :TextField, "vcfb/component/text_field"
  autoload :TimeField, "vcfb/component/time_field"
  autoload :TimeSelect, "vcfb/component/time_select"
  autoload :TimeZoneSelect, "vcfb/component/time_zone_select"
  autoload :UrlField, "vcfb/component/url_field"
  autoload :WeekField, "vcfb/component/week_field"
  autoload :WeekdaySelect, "vcfb/component/weekday_select"
end